From 0e957e4f966af246b612a73e0caf4998553e8112 Mon Sep 17 00:00:00 2001 From: andrussal Date: Tue, 9 Dec 2025 07:55:20 +0100 Subject: [PATCH] Fix bundle script flag parsing --- scripts/build-bundle.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-bundle.sh b/scripts/build-bundle.sh index 69c34c6..b2e82f4 100755 --- a/scripts/build-bundle.sh +++ b/scripts/build-bundle.sh @@ -36,9 +36,9 @@ OUTPUT="" while [ "$#" -gt 0 ]; do case "$1" in - --platform) + --platform|-p) PLATFORM="${2:-}"; shift 2 ;; - --output) + --output|-o) OUTPUT="${2:-}"; shift 2 ;; *) fail "Unknown argument: $1" ;; esac