Merge pull request #12 from luk3yx/patch-1

Fix $SNAP_ARCH parsing on arm64
Well spotted! Thank you.
This commit is contained in:
Alan Pope 2020-10-29 12:09:15 +00:00 committed by GitHub
commit 09e14d7b20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ case "$SNAP_ARCH" in
*86)
ARCH="i386-linux-gnu"
;;
*64)
amd64)
ARCH="x86_64-linux-gnu"
;;
*)