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
g install latest should fetch and install latest golang version (currently v1.13.5) using the following url: https://dl.google.com/go/go1.13.5.darwin-amd64.tar.gz
g install latest
g install latest attempts to fetch https://dl.google.com/go/go1.13.5.darwin-386.tar.gz which returns a 404 due to bad $arch variable
$arch
Use uname -m instead of uname -a when setting $arch.
uname -m
uname -a
Ref: https://github.com/tj/n/blob/master/bin/n#L797
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected:
g install latest
should fetch and install latest golang version (currently v1.13.5) using the following url: https://dl.google.com/go/go1.13.5.darwin-amd64.tar.gzActual:
g install latest
attempts to fetch https://dl.google.com/go/go1.13.5.darwin-386.tar.gz which returns a 404 due to bad$arch
variableSuggested resolution:
Use
uname -m
instead ofuname -a
when setting$arch
.Ref: https://github.com/tj/n/blob/master/bin/n#L797
The text was updated successfully, but these errors were encountered: