From 6de42480beedf00e135148bc51519da319f62491 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 16 Apr 2018 14:51:51 +0100 Subject: [PATCH] removed double quotes as per #1881 --- lgsm/functions/command_debug.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lgsm/functions/command_debug.sh b/lgsm/functions/command_debug.sh index 3f9b3b3f7..270d23e5f 100644 --- a/lgsm/functions/command_debug.sh +++ b/lgsm/functions/command_debug.sh @@ -96,15 +96,16 @@ fn_script_log_info "${rootdir}/${lockselfname}" trap fn_lockfile_trap INT cd "${executabledir}" || exit +# Note: do not add double quotes to ${executable} ${parms} if [ "${engine}" == "source" ]||[ "${engine}" == "goldsource" ]; then ${executable} ${parms} -debug elif [ "${engine}" == "realvirtuality" ]; then # Arma3 requires semicolons in the module list, which need to # be escaped for regular (tmux) loading, but need to be # stripped when loading straight from the console. - "${executable}" "${parms//\\;/;}" + ${executable} ${parms//\\;/;} else - "${executable}" "${parms}" + ${executable} ${parms} fi fn_print_dots "Stopping debug"