Skip to content

Commit a8b8b8c

Browse files
#356 Fix talisman installation on M1 architectures
Add check for M1 architecture machines. It is currently reported as `arm64` by `uname -m` on Apple Silicon.
1 parent 80d51b1 commit a8b8b8c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

install.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,12 @@ run() {
103103
"i686" | "i386")
104104
OS="${OS}_386"
105105
;;
106+
"arm64")
107+
OS="${OS}_arm64"
108+
;;
106109
*)
107110
echo_error "Talisman currently only supports x86 and x86_64 architectures."
108-
echo_error "If this is a problem for you, please open an issue: https://github.com/${INSTALL_ORG_REPO}/issues/new"
111+
echo_error "If this is a problem for you, please open an issue: https://github.com/thoughtworks/talisman/issues/new"
109112
exit $E_UNSUPPORTED_ARCH
110113
;;
111114
esac

0 commit comments

Comments
 (0)