diff --git a/lib/utils.bash b/lib/utils.bash index 3ae881c..5a46113 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -44,6 +44,11 @@ download_release() { if [ "$os" = "darwin" ]; then os="macos" fi + + if [ "$architecture" = "arm64" ]; then + architecture="aarch64" + fi + url="$GH_REPO/releases/download/${version}/helix-${version}-${architecture}-${os}.tar.xz" echo "* Downloading $TOOL_NAME release $version..."