aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.go b/main.go
index d7b28607..2bf20a09 100644
--- a/main.go
+++ b/main.go
@@ -9,6 +9,7 @@ import (
"fmt"
"log"
"os"
+ "runtime"
"strconv"
"strings"
"time"
@@ -61,6 +62,9 @@ func usage() {
}
func checkForWow64() {
+ if runtime.GOARCH == "arm" { //TODO: remove this exception when Go supports arm64
+ return
+ }
var b bool
err := windows.IsWow64Process(windows.CurrentProcess(), &b)
if err != nil {