'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 2m47s

This commit is contained in:
Your Name 2025-06-01 20:14:58 +12:00
parent 5209f4159c
commit 4a30d4d560

View File

@ -206,7 +206,7 @@ function buildspawn() {
else
echo "Using local native buildchain"
# shellcheck disable=SC2086
build $FLAGS $CMAKE_DIR
build "$CMAKE_DIR"
fi
}
@ -216,25 +216,30 @@ function buildspawn() {
# ----------------------------------------------------------------------------------------------------------
function main() {
while getopts "rm" opt; do
case $opt in
r)
# Process arguments manually to support long options
while [[ $# -gt 0 ]]; do
case $1 in
-r|--release)
RELEASE=1
shift
;;
m)
-m|--multi)
MULTIBUILD=1
shift
;;
*)
-*)
echo "Unknown option: $1"
help
exit 1
;;
*)
# This is not an option, so break from the loop
break
;;
esac
done
# Shift the processed options out of the argument list
shift $((OPTIND-1))
# check we have at least one argument
# check we have at least one argument remaining
if [ $# -eq 0 ]; then
help
exit 1