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