Fork from OpenRA/OpenRA with one-click launch script (start-ra.cmd) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
166 B
Bash
9 lines
166 B
Bash
#!/bin/sh
|
|
set -o errexit || exit $?
|
|
|
|
LAUNCHER=$(readlink -f "${0}")
|
|
HERE=$(dirname "${LAUNCHER}")
|
|
cd "${HERE}/../lib/openra"
|
|
|
|
./OpenRA.Server Game.Mod="{MODID}" "$@"
|