change local PATH setup

main
Andrew Coleman 2022-05-10 15:35:04 -04:00
parent 3fc403bf9a
commit b1352cf6f1
1 changed files with 2 additions and 2 deletions

View File

@ -27,9 +27,9 @@ unset rc
complete -cf sudo
# local paths
if ! [[ "$PATH" =~ $HOME/.local/bin:$HOME/bin: ]]
if ! [[ "$PATH" =~ "$HOME/.local/bin:" ]]
then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
PATH="$HOME/.local/bin:$PATH"
fi
export PATH