9 lines
166 B
Bash
Executable File
9 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit || exit $?
|
|
|
|
LAUNCHER=$(readlink -f "${0}")
|
|
HERE=$(dirname "${LAUNCHER}")
|
|
cd "${HERE}/../lib/openra"
|
|
|
|
./OpenRA.Server Game.Mod="{MODID}" "$@"
|