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
Talisman fails to install on some Linux 64 ARM systems, such as Ubuntu Jammy that reports as aarch64 (but it's easily fixed)
$ bash -c "$(curl --silent https://thoughtworks.github.io/talisman/scripts/install.bash)"
Talisman currently only supports x86 and x86_64 and arm64 architectures.
If this is a problem for you, please open an issue: https://github.com/thoughtworks/talisman/issues/new
$ uname -a
Linux fresnel 6.4.16-linuxkit #1 SMP PREEMPT Wed Oct 25 16:32:24 UTC 2023 aarch64 aarch64 aarch64 GNU/Linux
To Reproduce
Steps to reproduce the behavior:
Run the following command from something that is ARM 64, e.g., Mac M1.
Describe the bug
Talisman fails to install on some Linux 64 ARM systems, such as Ubuntu Jammy that reports as
aarch64
(but it's easily fixed)To Reproduce
Steps to reproduce the behavior:
Expected behavior
I'd expect Talisman to install since
arm64
andaarch64
are equivalent.In my testing, the architecture case statement can be updated to treat
aarch64
asarm64
and Talisman functions as expected.https://github.com/thoughtworks/talisman/blob/main/global_install_scripts/install.bash#L114
This is how I ultimately installed it:
Patch for
install.bash
The text was updated successfully, but these errors were encountered: