We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
h2. Description
In current Go versions, the target for Go binaries is defined by GOBIN if it is not empty, not GOPATH[0]/bin as used to be the case.
GOBIN
GOPATH[0]/bin
This causes current setups with a GOBIN not matching the old default value to fail, as binstale is no longer looking at the proper location.
binstale
h2. Suggested fix
Look in GOBIN first if it is not empty, then fallback to the legacy use of GOPATH.
GOPATH
The text was updated successfully, but these errors were encountered:
No branches or pull requests
h2. Description
In current Go versions, the target for Go binaries is defined by
GOBIN
if it is not empty, notGOPATH[0]/bin
as used to be the case.This causes current setups with a
GOBIN
not matching the old default value to fail, asbinstale
is no longer looking at the proper location.h2. Suggested fix
Look in
GOBIN
first if it is not empty, then fallback to the legacy use ofGOPATH
.The text was updated successfully, but these errors were encountered: