laughing-hipster/.work_profile

15 lines
258 B
Bash
Executable File

#!/bin/bash
if [[ $DEBUG ]] ; then
echo "I'm on my work machine!"
fi
alias projects='cd /c/Projects'
if [ -d "/c/Windows" ]; then
export GOROOT="/c/Go"
export GOPATH="/c/Projects/Go"
fi
export GOBIN=${GOPATH}/bin
PATH=${PATH}:${GOBIN}:${GOROOT}/bin