Skip to content

Commit c5bf3bf

Browse files
fix: dockerized --compile on Apple Silicon
fixes #32
1 parent f5aef1c commit c5bf3bf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/dockerized

+3-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ x86_64)
5959
i*86)
6060
DOCKERIZED_COMPILE_GOARCH=386
6161
;;
62-
62+
arm64 | aarch64)
63+
DOCKERIZED_COMPILE_GOARCH=arm64
64+
;;
6365
esac
6466

6567
if [ "$DOCKERIZED_COMPILE" ] || [ ! -f "$DOCKERIZED_BINARY" ]; then

0 commit comments

Comments
 (0)