ENH: mpirunDebug: preserve ". Fixes #2459

This commit is contained in:
mattijs 2022-05-06 18:09:54 +01:00
parent df63b47fbc
commit 2ba2814c50

View File

@ -176,7 +176,7 @@ do
-decomposeParDict) -decomposeParDict)
# Grab values and add to args immediately # Grab values and add to args immediately
decompDict="$2" decompDict="$2"
appArgs="${appArgs}${appArgs:+ }$1 \"$2\"" appArgs="${appArgs}${appArgs:+ }$1 '$2'"
shift shift
;; ;;
@ -204,7 +204,7 @@ do
-decomposeParDict) -decomposeParDict)
# Grab values and add to args immediately # Grab values and add to args immediately
decompDict="$2" decompDict="$2"
appArgs="${appArgs}${appArgs:+ }$1 \"$2\"" appArgs="${appArgs}${appArgs:+ }$1 '$2'"
shift shift
;; ;;
@ -213,7 +213,7 @@ do
then then
appName="$1" appName="$1"
else else
appArgs="${appArgs}${appArgs:+ }\"$1\"" appArgs="${appArgs}${appArgs:+ }'$1'"
fi fi
;; ;;
esac esac