Skip to content

Commit c68d98d

Browse files
authored
fix(install): handle aarch64 -> arm64 (#19)
when running "act" (local github actions: https://github.com/nektos/act) on m1 macs the container arch for arm64 is "aarch64".
1 parent 6ae378d commit c68d98d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ main() {
1919

2020
case "$arch" in
2121
x86_64) arch="x64" ;;
22+
aarch64) arch="arm64" ;;
2223
arm64) ;;
2324
*) echo "Unsupported architecture: $arch"; exit 1 ;;
2425
esac

0 commit comments

Comments
 (0)