Fork from OpenRA/OpenRA with one-click launch script (start-ra.cmd) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
243 B
Bash
8 lines
243 B
Bash
#!/bin/sh
|
|
set -o errexit || exit $?
|
|
|
|
# OpenRA.Utility relies on keeping the original working directory, so don't change directory
|
|
LAUNCHER=$(readlink -f "${0}")
|
|
HERE=$(dirname "${LAUNCHER}")
|
|
"${HERE}/../lib/openra/OpenRA.Utility" {MODID} "$@"
|