zsh/dotzprofile
Funda Wang ac9ac58f87 cleanup spec
(cherry picked from commit fa2c7ed56b824e6e005a1c12c93b575021074710)
2024-10-08 10:31:17 +08:00

13 lines
299 B
Plaintext

# this file is installed as ~/.zprofile for newly created users
# prepend ~/.local/bin and ~/bin to $PATH unless it is already there
if ! [[ "$PATH" =~ "$HOME/bin" ]]
then
PATH="$HOME/bin:$PATH"
fi
if ! [[ "$PATH" =~ "$HOME/.local/bin:" ]]
then
PATH="$HOME/.local/bin:$PATH"
fi
export PATH