Tools: Allow spaces in file path in runwait.sh script. Issue #39666, patch by Pavel.

This commit is contained in:
Juha 2022-03-06 09:04:29 +02:00
parent 67a95d4f7f
commit d921dc84fd

View File

@ -1,6 +1,6 @@
#!/bin/sh
CommandLine=$@
CommandLine="$@"
#set -x
echo $CommandLine
@ -13,7 +13,7 @@ if [ "$ext" = "exe" ]; then
echo "WINE not found in path"
fi
else
$CommandLine
"$CommandLine"
fi
echo "--------------------------------------------------"