diff --git a/.setpath.sh b/.setpath.sh index bbe8fa7..b954a24 100644 --- a/.setpath.sh +++ b/.setpath.sh @@ -1,6 +1,11 @@ -BIN_PATH="$HOME/.local/bin" -if [ -d "$BIN_PATH" ]; then - found=$(echo $PATH | tr ':' '\n' | grep -w "$BIN_PATH") - [ ! "$found" ] && export PATH="$BIN_PATH:$PATH" - true -fi +add_path() { + BIN_PATH="$1" + if [ -d "$BIN_PATH" ]; then + found=$(echo $PATH | tr ':' '\n' | grep -w "$BIN_PATH") + [ ! "$found" ] && export PATH="$BIN_PATH:$PATH" + true + fi +} + +add_path "$HOME/.local/bin" +add_path "$HOME/.cargo/bin"