diff options
-rw-r--r-- | zshrc | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -128,7 +128,11 @@ typeset -U fpath path=( "$HOME/bin" "$HOME/local/bin" - /usr/lib/ccache +) +if [ -e "$HOME/.ccache" ] || ! [ -L "$HOME/.ccache" ]; then + path+=( /usr/lib/ccache ) +fi +path+=( /usr/local/bin /usr/bin /usr/local/CAME/bin |