aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/updater
diff options
context:
space:
mode:
Diffstat (limited to 'updater')
-rw-r--r--updater/versions.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/updater/versions.go b/updater/versions.go
index 72f90240..c0009ad8 100644
--- a/updater/versions.go
+++ b/updater/versions.go
@@ -60,6 +60,8 @@ func findCandidate(candidates fileList) (*UpdateFound, error) {
arch = "amd64"
} else if runtime.GOARCH == "386" {
arch = "x86"
+ } else if runtime.GOARCH == "arm" {
+ arch = "arm"
} else if runtime.GOARCH == "arm64" {
arch = "arm64"
} else {