dotfiles/.setpath.sh

7 lines
180 B
Bash
Raw Normal View History

BIN_PATH="$HOME/.local/bin"
2017-02-12 16:22:28 +01:00
if [ -d "$BIN_PATH" ]; then
found=$(echo $PATH | tr ':' '\n' | grep -w "$BIN_PATH")
[ ! "$found" ] && export PATH="$BIN_PATH:$PATH"
true
fi