mirror of
https://github.com/gbdev/rgbds.git
synced 2026-08-22 06:44:33 +00:00
Use Bash arrays instead of POSIX splitting when possible
This commit is contained in:
@@ -28,12 +28,12 @@ while [[ $# -gt 0 ]]; do
|
||||
;;
|
||||
--jobs)
|
||||
shift
|
||||
make_args+=("-j" "$1")
|
||||
runtests_args+=("--jobs" "$1")
|
||||
make_args+=(-j "$1")
|
||||
runtests_args+=(--jobs "$1")
|
||||
;;
|
||||
--os)
|
||||
shift
|
||||
runtests_args+=("--os" "$1")
|
||||
runtests_args+=(--os "$1")
|
||||
;;
|
||||
*)
|
||||
echo "$(basename "$0"): unknown option '$1'"
|
||||
|
||||
Reference in New Issue
Block a user