This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: gowo my_go_workspace | |
# Will set GOPATH and update PATH with the bin dir. Will remove previous GOPATH bin dir from the PATH. | |
# Opinionated about the root dir where Go workspaces go. Change if you want. | |
# Put this in your ~/.bash_profile | |
export GOPATH=$HOME/Projects/go | |
export PATH=$PATH:$GOPATH/bin | |
function gowo() { |