fixed a missing fi

moveTools
Adam Veldhousen 9 years ago
parent 9fd9c9d5ba
commit da79fdd3a8
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B

@ -35,16 +35,12 @@ fi
# give windows boxes a chance to override environment
if [ -d "/c/Windows" ]; then
if [ -d "${HOME}/tools/vim" ] ; then
PATH=${HOME}/Tools/vim:${PATH}
export WINDOWS="TRUE"
export ANSIBLE_HOSTS="/c/ansible/hosts"
export GOROOT="/d/Programs/Go"
export GIT_EDITOR=~/Tools/vim/gvim.exe
WINDOWS="TRUE"
ANSIBLE_HOSTS="/c/ansible/hosts"
GOROOT="/d/Programs/Go"
BOOT2DOCKER=/c/Program\ Files/Boot2Docker\ for\ Windows/
GIT_EDITOR=~/Tools/vim/gvim.exe
export FORTUNE=fortune.exe
export BOOT2DOCKER=/c/Program\ Files/Boot2Docker\ for\ Windows/
PATH=${PATH}:/c/ruby193/bin
fi
# if there is a C:/Projects folder on this box then I'm using my work computer, which runs in a VM and is setup differently
@ -53,11 +49,14 @@ if [ -d "/c/Projects" ]; then
. ~/.work_profile
fi
export EDITOR=$GIT_EDITOR # Default Editor
export VISUAL=$EDITOR # Visual not really used differently from EDITOR anymore
export EDITOR=$GIT_EDITOR
export VISUAL=$EDITOR
PATH=${PATH}:${GOROOT}/bin:${GOPATH}/bin:${BOOT2DOCKER}
if [ -d "${HOME}/tools/vim" ] ; then
PATH=${HOME}/Tools/vim:${PATH}
fi
PATH=${PATH}:${GOROOT}/bin:${GOPATH}/bin:${BOOT2DOCKER}
# http://stackoverflow.com/questions/410616/increasing-the-maximum-number-of-tcp-ip-connections-in-linux
# run these to increase concurrent connections in linux

Loading…
Cancel
Save