You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First off, thanks for the great tool. I've run into a few problems since upgrading from version 1.X brew install --HEAD goenv
Previously I had the following in my .bash_profile, which seemed to work ok
if which goenv > /dev/null; then eval "$(goenv init -)"; fi
export GOPATH="$HOME/go"
export PATH="$GOROOT/bin:$PATH"
export PATH="$GOPATH/bin:$PATH"
The docs for GOENV_DISABLE_GOPATH specify:
It's recommend that you use this (as set to 0) to avoid mixing multiple versions of golang packages at GOPATH when using different versions of golang. See #72 (comment)
So now I have the following in my .bash_profile and I'm leaving goenv to manage my GOPATH
if which goenv > /dev/null; then eval "$(goenv init -)"; fi
export PATH="$GOROOT/bin:$PATH"
export PATH="$GOPATH/bin:$PATH"
Currently my projects are all in the $HOME/go/src dir:
@dmlittle can this please get released or at least the readme updated to use --HEAD, just came back to this again because a fresh install refused to install 1.13
@grosser I've contributed PRs adding new versions of Go to goenv but I'm not the owner/maintainer of this project. I think you might have intended to tag @syndbg?
First off, thanks for the great tool. I've run into a few problems since upgrading from version 1.X
brew install --HEAD goenv
Previously I had the following in my
.bash_profile
, which seemed to work okThe docs for
GOENV_DISABLE_GOPATH
specify:So now I have the following in my
.bash_profile
and I'm leavinggoenv
to manage myGOPATH
Currently my projects are all in the
$HOME/go/src
dir:$HOME/go/version/src
?The text was updated successfully, but these errors were encountered: