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