From 7b3264f7f49a3e4c431fa0727b92b14447ca362a Mon Sep 17 00:00:00 2001 From: Alexander Zinn Date: Sat, 22 Nov 2025 22:45:01 -0500 Subject: [PATCH] Fix ci-deploy script to correctly handle beta flag by adjusting shift command, ensuring proper argument parsing for deployment options. --- scripts/ci-deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-deploy.sh b/scripts/ci-deploy.sh index ddfa17f..4385ed7 100755 --- a/scripts/ci-deploy.sh +++ b/scripts/ci-deploy.sh @@ -18,7 +18,7 @@ while [[ "${#}" -gt 0 ]]; do case "${1}" in --beta) isBeta="true" - shift + shift 2 ;; --build) packageVersionToDeploy="${packageVersionToDeploy}-build.${2}"