From 9154c45391a2a0d1a44a8acbe3a0e35abd42cb46 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 24 May 2025 11:55:59 +0300 Subject: [PATCH] CI: Catch unsupported arguments in ci_build.bash --- build-aux/ci_build.bash | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build-aux/ci_build.bash b/build-aux/ci_build.bash index 69409076..afa5f6b2 100755 --- a/build-aux/ci_build.bash +++ b/build-aux/ci_build.bash @@ -115,6 +115,10 @@ while getopts a:b:c:d:l:m:n:s:p:f:w:h opt; do ;; w) WRAPPER="$OPTARG" ;; + *) + echo "Unsupported option: $opt" + exit 1 + ;; esac done -- 2.47.2