5 lines
84 B
Bash
5 lines
84 B
Bash
if [ -d "$HOME/.local/bin" ]; then
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
fi
|
|
export PATH
|