|
@@ -117,6 +117,14 @@ export GOPATH=$HOME/go
|
|
|
export GOROOT=/usr/local/src/go
|
|
|
export PATH=$PATH:$GOROOT/bin
|
|
|
|
|
|
+# Add scripts directories to the path
|
|
|
+if [ -d ~/scripts ]; then
|
|
|
+ for D in ~/scripts/*; do
|
|
|
+ export PATH=$PATH:$D
|
|
|
+ done
|
|
|
+ export PATH=$PATH:~/scripts
|
|
|
+fi
|
|
|
+
|
|
|
# Add autocompletion for git
|
|
|
source ~/.bash/git-completion.bash
|
|
|
|