We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fab70 commit e75f395Copy full SHA for e75f395
global_install_scripts/update_talisman.bash
@@ -5,6 +5,7 @@ shopt -s extglob
5
DEBUG=${DEBUG:-''}
6
FORCE_DOWNLOAD=${FORCE_DOWNLOAD:-''}
7
declare UPDATE_TYPE=""
8
+E_UNSUPPORTED_ARCH=5
9
if [[ $# -gt 0 && $1 =~ talisman-binary.* ]]; then
10
UPDATE_TYPE='talisman-binary'
11
fi
@@ -92,7 +93,7 @@ function run() {
92
93
OS="${OS}_arm64"
94
;;
95
*)
- echo_error "Talisman currently only supports x86 and x86_64 architectures."
96
+ echo_error "Talisman currently only supports x86, x86_64 and arm64 architectures."
97
echo_error "If this is a problem for you, please open an issue: https://github.com/${INSTALL_ORG_REPO}/issues/new"
98
exit $E_UNSUPPORTED_ARCH
99
0 commit comments