fix: add error handling for unknown arguments in run script

This commit is contained in:
2026-02-27 21:02:48 +01:00
parent 103df98c0f
commit 901477ef5a

4
run.sh
View File

@@ -33,6 +33,10 @@ while [[ $# -gt 0 ]]; do
EXPOSED_PORTS=("-p" "10000:10000" "-p" "10001:10001" "-p" "10002:10002")
shift
;;
*)
echo "Unknown argument: $1" >&2
exit 1
;;
esac
done