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
What steps will reproduce the problem?
1. export GOPATH=~/code/project
2. export GOBIN=~/bin
3. write an app in ~/code/project/src/hello/app.go
4. cd ~/code/project/src/hello
5. go install
What is the expected output?
hello binary in ~/code/project/bin
What do you see instead?
hello binary in ~/bin
Which compiler are you using (5g, 6g, 8g, gccgo)?
6g
Which operating system are you using?
mac os 10.7.3
Which version are you using? (run 'go version')
go version go1
Please provide any additional information below.
This worked fine on the previous weekly, it broke when I upgraded to the go1 release.
The text was updated successfully, but these errors were encountered:
It definitely changed from the last weekly to go1,
but that was intentional. $GOBIN has global applicability now.
See http://golang.org/cmd/go/#GOPATH_environment_variable
To have binaries written to $GOPATH/bin, unset $GOBIN.
by pcrosby:
The text was updated successfully, but these errors were encountered: