diff options
Diffstat (limited to '.path')
-rwxr-xr-x | .path | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ [ -d $HOME/bin ] && export PATH=$HOME/bin:$PATH [ -d $HOME/.local/bin ] && export PATH=$HOME/.local/bin:$PATH -if command -v go &> /dev/null +if command -v go > /dev/null then export GOPATH=$(go env GOPATH) export PATH=$PATH:$(go env GOPATH)/bin @@ -14,6 +14,6 @@ if gem env user_gemhome &> /dev/null; then export PATH="$PATH:$GEM_HOME/bin" fi -if command -v cargo &> /dev/null; then +if command -v cargo > /dev/null; then export PATH="$PATH:$HOME/.cargo/bin" fi |