From f453d9c14851743afc43515103740eeff146cb3f Mon Sep 17 00:00:00 2001 From: quinno <3379314+quinnyo@users.noreply.github.com> Date: Wed, 2 May 2018 21:02:22 +1000 Subject: [PATCH] Fix args in linux server scripts Looks like a typo. Any args passed to the openra-{MOD}-server scripts were not correctly passed to OpenRA.Server.exe. The client/game ones are fine. (I guess "$$@" resolves to a PID with an '@' hanging off it) --- packaging/linux/openra-server.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/linux/openra-server.in b/packaging/linux/openra-server.in index 63893307b1..a1dfa112aa 100755 --- a/packaging/linux/openra-server.in +++ b/packaging/linux/openra-server.in @@ -1,4 +1,4 @@ #!/bin/sh cd "{GAME_INSTALL_DIR}" -mono {DEBUG} OpenRA.Server.exe Game.Mod={MOD} "$$@" \ No newline at end of file +mono {DEBUG} OpenRA.Server.exe Game.Mod={MOD} "$@"