From ae164f58a7d7f87e64b3d169087c85704a553e77 Mon Sep 17 00:00:00 2001 From: Aqil Aziz Date: Sat, 23 May 2026 14:57:57 +0700 Subject: [PATCH] fix(installer): let linux arm64 dry-run report unsupported asset (#2405) --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index d3485545b..9ad9d50a9 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -141,6 +141,11 @@ case "${ARCH_RAW}" in esac if [ "${OS}" = "linux" ] && [ "${ARCH}" != "x86_64" ]; then + if [ "${DRY_RUN}" = true ]; then + log_warn "Linux installer currently supports x86_64 only; no install asset resolved for ${ARCH}." + echo "DRY RUN: skipping install for ${OS}/${ARCH} - no compatible asset is published." + exit 0 + fi log_err "Linux installer currently supports x86_64 only." exit 1 fi