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
When uname -m outputs aarch64, asdf will fail to install TILT due to the download link does not exist for aarch64 but for arm64 it does exist.
uname -m
aarch64
asdf
I believe aarch64 and arm64 refer to the same architecture?
arm64
If so, then I think we can just alter this function:
get_arch() { # the tilt builds arch names match the output of uname -m exactly. uname -m }
To return arm64 if the result from uname -m is aarch64, to be able to download the same binary of arm64
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When
uname -m
outputsaarch64
,asdf
will fail to install TILT due to the download link does not exist for aarch64 but for arm64 it does exist.I believe
aarch64
andarm64
refer to the same architecture?If so, then I think we can just alter this function:
To return
arm64
if the result fromuname -m
isaarch64
, to be able to download the same binary ofarm64
The text was updated successfully, but these errors were encountered: