diff --git a/scripts/install.sh b/scripts/install.sh index 6368b6800..8d0c8a055 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -166,6 +166,8 @@ installDependencies() { JQ="$(mktemp -d)/jq" if [ "${OS}-${ARCH}" = 'darwin-amd64' ]; then download 'https://github.com/stedolan/jq/releases/download/jq-1.6/jq-osx-amd64' "$JQ" + elif [ "${OS}-${ARCH}" = 'darwin-arm64' ]; then + download 'https://github.com/jqlang/jq/releases/download/jq-1.7rc1/jq-macos-arm64' "$JQ" else download 'https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64' "$JQ" fi