From 127c0b4f8d04eb8519b3de2d438e41e4a9b5d96d Mon Sep 17 00:00:00 2001
From: Daniel <dhaavi@users.noreply.github.com>
Date: Mon, 8 Aug 2022 14:47:35 +0200
Subject: [PATCH] Compile for arm64

---
 pack | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/pack b/pack
index 6317112..3c94947 100755
--- a/pack
+++ b/pack
@@ -70,12 +70,18 @@ function check_all {
   GOOS=linux GOARCH=amd64 check
   GOOS=windows GOARCH=amd64 check
   GOOS=darwin GOARCH=amd64 check
+  GOOS=linux GOARCH=arm64 check
+  GOOS=windows GOARCH=arm64 check
+  GOOS=darwin GOARCH=arm64 check
 }
 
 function build_all {
   GOOS=linux GOARCH=amd64 build
   GOOS=windows GOARCH=amd64 build
   GOOS=darwin GOARCH=amd64 build
+  GOOS=linux GOARCH=arm64 build
+  GOOS=windows GOARCH=arm64 build
+  GOOS=darwin GOARCH=arm64 build
 }
 
 function build_os {