WIP: uv-simple-select #1

Closed
Chris Blackbourn wants to merge 182 commits from uv-simple-select into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 6858332d6d - Show all commits

View File

@ -29,18 +29,18 @@ if [[ -z "${MY_MAKE_CALL_LEVEL}" ]]; then
for i in "$@"; do for i in "$@"; do
case $i in case $i in
-j*) -j*)
MY_JOBS_ARG=$i export MY_JOBS_ARG=$i
if [ "$MY_JOBS_ARG" = "-j" ]; then if [ "$MY_JOBS_ARG" = "-j" ]; then
add_next=1 add_next=1
fi fi
;; ;;
--jobs=*) --jobs=*)
shift # past argument=value shift # past argument=value
MY_JOBS_ARG=$i export MY_JOBS_ARG=$i
;; ;;
*) *)
if (( $add_next == 1 )); then if (( $add_next == 1 )); then
MY_JOBS_ARG="$MY_JOBS_ARG $i" export MY_JOBS_ARG="$MY_JOBS_ARG $i"
add_next=0 add_next=0
fi fi
;; ;;