fix(installer): let linux arm64 dry-run report unsupported asset (#2405)

This commit is contained in:
Aqil Aziz
2026-05-23 00:57:57 -07:00
committed by GitHub
parent 0d83851f24
commit ae164f58a7
+5
View File
@@ -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