From 2ba2814c50e73ca2a06dd4e3eb6517b8a38105bb Mon Sep 17 00:00:00 2001 From: mattijs Date: Fri, 6 May 2022 18:09:54 +0100 Subject: [PATCH] ENH: mpirunDebug: preserve ". Fixes #2459 --- bin/mpirunDebug | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/mpirunDebug b/bin/mpirunDebug index d8d3f74501..1e901b25aa 100755 --- a/bin/mpirunDebug +++ b/bin/mpirunDebug @@ -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