Skip to content

Commit

Permalink
fix: add is arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
ntsd committed Jul 4, 2024
1 parent 16aba67 commit 52e6721
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bin/is-arm64
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

if [[ "$(uname -m)" == "arm64" ]]; then
exit 0
else
exit 1
fi

0 comments on commit 52e6721

Please sign in to comment.