fixed a missing fi

moveTools
Adam Veldhousen 2015-06-04 15:09:22 -05:00
parent 9fd9c9d5ba
commit da79fdd3a8
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
1 changed files with 11 additions and 12 deletions

View File

@ -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,12 +49,15 @@ 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
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
# sudo sysctl net.ipv4.ip_local_port_range="15000 61000"