aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/rosa.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-01-27 21:12:39 +0900
committerOphestra <cat@gensokyo.uk>2026-01-27 21:12:39 +0900
commitbd80327a8f87a5f43e17f7c71b8f08c1b337ee28 (patch)
treea07d80e47b33e2e0c1033f6953ad3322501fc73f /internal/rosa/rosa.go
parent41f9aebbb7f93616637d717eef2371e2408b68ca (diff)
internal/rosa: add arm64 strings
This enables building on arm64. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/rosa.go')
-rw-r--r--internal/rosa/rosa.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/rosa/rosa.go b/internal/rosa/rosa.go
index 5c3b030e..f90626a3 100644
--- a/internal/rosa/rosa.go
+++ b/internal/rosa/rosa.go
@@ -49,6 +49,8 @@ func linuxArch() string {
switch runtime.GOARCH {
case "amd64":
return "x86_64"
+ case "arm64":
+ return "aarch64"
default:
panic("unsupported target " + runtime.GOARCH)