From 81affb616fc70953f4f62c879514a5f9ea066c58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Gr=C3=B8ndahl?= Date: Thu, 4 Jun 2026 12:32:34 +0200 Subject: [PATCH] feat: add s390x support to install-cli.sh Map the s390x machine type to the s390x release asset so the install script works on linux/s390x hosts. The linux/s390x build target was added in 4acd31e9 but install-cli.sh still rejected the architecture. --- install-cli.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install-cli.sh b/install-cli.sh index 2443f903e..833933fd3 100755 --- a/install-cli.sh +++ b/install-cli.sh @@ -150,9 +150,13 @@ else ARCH="arm64" debug_print "Mapped to ARM64 architecture" ;; + s390x) + ARCH="s390x" + debug_print "Mapped to s390x architecture" + ;; *) echo "Error: Unsupported Linux architecture: $MACHINE_TYPE" - echo "Kosli CLI is only available for amd64 and arm64 on Linux." + echo "Kosli CLI is only available for amd64, arm64, and s390x on Linux." exit 1 ;; esac