PATH: put $HOME/bin before $PATH

Apparently having colorgcc in $HOME/bin doesn't help when it's being
ignored.
This commit is contained in:
2015-12-29 23:04:04 +01:00
parent f822672f24
commit ecb320211b

View File

@@ -83,7 +83,7 @@ export PAGER='less -R -F -X -S -n -i -m'
export GOPATH=~/src/go
export GOROOT=~/pkg/go
export PATH="$PATH:$HOME/bin:$GOROOT/bin:$GOPATH/bin"
export PATH="$HOME/bin:$PATH:$GOROOT/bin:$GOPATH/bin"
if [ -d $HOME/.gem/ruby ]; then
export PATH="$PATH:$(echo $HOME/.gem/ruby/*/bin | tr ' ' :)"
fi