File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 112
112
113
113
# Note: do not add double quotes to ${executable} ${startparameters}.
114
114
if [ " ${engine} " == " source" ]|| [ " ${engine} " == " goldsrc" ]; then
115
- ${executable} ${startparameters} -debug
116
- elif [ " ${shortname} " == " arma3" ]; then
117
- # Arma3 requires semicolons in the module list, which need to
118
- # be escaped for regular (tmux) loading, but need to be
119
- # stripped when loading straight from the console.
120
- ${executable} ${parms// \\ ;/ ;}
115
+ eval " ${executable} ${startparameters} -debug"
121
116
elif [ " ${engine} " == " quake" ]; then
122
- ${executable} ${startparameters} -condebug
117
+ eval " ${executable} ${startparameters} -condebug"
123
118
else
124
119
# shellcheck disable=SC2086
125
- ${preexecutable} ${executable} ${startparameters}
120
+ eval " ${preexecutable} ${executable} ${startparameters} "
126
121
fi
127
122
128
123
fn_lockfile_trap
You can’t perform that action at this time.
0 commit comments