From 5ea4a1e270f31282115f6d90437f0d135e3fd240 Mon Sep 17 00:00:00 2001 From: Juha Date: Fri, 23 Dec 2022 09:41:28 +0200 Subject: [PATCH] Tools: Fix handling program parameters in runwait.sh. Issue #40045, patch by Dean Mustakinov. --- tools/runwait.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/runwait.sh b/tools/runwait.sh index cc2f9b6ecd..8f4353deb9 100755 --- a/tools/runwait.sh +++ b/tools/runwait.sh @@ -1,10 +1,12 @@ #!/bin/sh CommandLine="$@" +ExeName="$1" #set -x echo $CommandLine -ext=${CommandLine#*.} +ext=${ExeName#*.} +echo "ext=$ext" if [ "$ext" = "exe" ]; then echo "Windows Executable detected. Attempting to use WINE..." if [ -x "`which wine`" ]; then @@ -13,7 +15,8 @@ if [ "$ext" = "exe" ]; then echo "WINE not found in path" fi else - "$CommandLine" + shift + "$ExeName" $@ fi echo "--------------------------------------------------"