1
0
mirror of https://git.tukaani.org/xz.git synced 2025-10-05 16:58:17 +00:00

CI: Catch unsupported arguments in ci_build.bash

This commit is contained in:
Lasse Collin 2025-05-24 11:55:59 +03:00
parent 4fc6208abe
commit 067cecdea6
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -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