aboutsummaryrefslogtreecommitdiff
path: root/mkshrc
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2018-10-10 18:45:08 -0400
committerMitch Riedstra <mitch@riedstra.us>2018-10-10 18:45:08 -0400
commitb69319781b36496ddaf21cb3647173b16e4ae629 (patch)
tree3fd0ad2c698c1f1970ac5251e8ffcf60ce89bdb1 /mkshrc
parent3daed283eae4b0ed20bfe206b7d793b4b26326ef (diff)
downloaddotfiles-b69319781b36496ddaf21cb3647173b16e4ae629.tar.gz
dotfiles-b69319781b36496ddaf21cb3647173b16e4ae629.tar.xz
Use local version of go if available
Diffstat (limited to 'mkshrc')
-rw-r--r--mkshrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/mkshrc b/mkshrc
index 99d057d..ae6d5f5 100644
--- a/mkshrc
+++ b/mkshrc
@@ -488,6 +488,11 @@ export PATH="$HOME/bin:$PATH"
export GOPATH="$HOME/go"
export PATH="$GOPATH/bin:$PATH"
+_gobin="/usr/local/go/bin"
+if [ -e "$_gobin" ] ; then
+ export PATH="$_gobin:$PATH"
+fi
+
UPDATE_URL="https://www.rygel.us/etc/"
VIM_GIT_URL="https://git.riedstra.us/mitch/vim-cfg.git"
VIM_BASIC_URL="https://git.riedstra.us/mitch/vim-cfg.git/plain/basic.vim"