Browse Source

Merge branch 'master' of git.xchg.sh:angrygoats/essentials

master
Taylor Bockman 2 years ago
parent
commit
9148833869
  1. 6
      dotfiles/bash/bashrc

6
dotfiles/bash/bashrc

@ -44,8 +44,8 @@ if [[ ! -d $HOME/projects ]]; then
fi
if [[ -x go ]]; then
echo "Making $HOME/projects/go"
mkdir -p $HOME/projects/go
echo "Making $HOME/.go"
mkdir -p $HOME/.go
fi
@ -132,7 +132,7 @@ export HISTCONTROL=ignoredups
# If go is installed, set the $GOPATH to the projects directory created above.
if which go > /dev/null; then export GOPATH=$HOME/projects/go; fi
if which go > /dev/null; then export GOPATH=$HOME/.go; fi
# ------------ END EXPORTS ------------#

Loading…
Cancel
Save