filter out more arm stuff
- ID
0592023- date
2022-10-24 20:26:48+00:00- author
Alex Chan <alex@alexwlchan.net>- parent
d52e547- message
filter out more arm stuff- changed files
1 file, 1 addition, 1 deletion
Changed files
_install-github-bin (4166) → _install-github-bin (4210)
diff --git a/_install-github-bin b/_install-github-bin
index d2a8bca..a2b6559 100755
--- a/_install-github-bin
+++ b/_install-github-bin
@@ -68,7 +68,7 @@ RELEASES_API_URL="https://api.github.com/repos/$REPO_NAME/releases/latest"
# Apple Silicon yet; this will need updating eventually.
#
ASSET_URL=$(curl --silent "$RELEASES_API_URL" \
- | jq -r '.assets | .[] | select(.name | contains("darwin")) | select(.name | contains("arm") | not) | .url' \
+ | jq -r '.assets | .[] | select(.name | contains("darwin")) | select(.name | contains("arm") | not) | select(.name | contains("aarch64") | not) | .url' \
| grep -v arm64
)