mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 03:04:06 +00:00
fix(bin): path append quoting (#130)
This commit is contained in:
@@ -39,6 +39,6 @@ for dir in "$@"; do
|
||||
esac
|
||||
|
||||
# Append the directory to PATH.
|
||||
export PATH="${PATH:+"$PATH:"}$dir"
|
||||
export PATH="${PATH:+$PATH:}$dir"
|
||||
[ "$VERBOSE" -eq 1 ] && echo "Appended '$dir' to PATH."
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user