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