mirror of
https://github.com/JonasunderscoreJones/dayz-linux-gui-launcher.git
synced 2025-10-23 07:19:18 +02:00
fix: unnecessary quotes in -mod arg output
This commit is contained in:
parent
f459061a96
commit
b2f0ba9629
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ done
|
||||||
|
|
||||||
cmdline=()
|
cmdline=()
|
||||||
if [[ "${#mods[@]}" -gt 0 ]]; then
|
if [[ "${#mods[@]}" -gt 0 ]]; then
|
||||||
cmdline+=("\"-mod=$(IFS=";"; echo "${mods[*]}")\"")
|
cmdline+=("-mod=$(IFS=";"; echo "${mods[*]}")")
|
||||||
fi
|
fi
|
||||||
if [[ "${LAUNCH}" == 1 ]] && [[ -n "${SERVER}" ]]; then
|
if [[ "${LAUNCH}" == 1 ]] && [[ -n "${SERVER}" ]]; then
|
||||||
cmdline+=("-connect=${SERVER}")
|
cmdline+=("-connect=${SERVER}")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue