Fork from OpenRA/OpenRA with one-click launch script (start-ra.cmd) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
7 lines
128 B
Bash
7 lines
128 B
Bash
#!/bin/sh
|
|
set -o errexit || exit $?
|
|
|
|
ENGINEDIR=$(dirname "$0")
|
|
|
|
ENGINE_DIR=.. dotnet "${ENGINEDIR}/bin/OpenRA.Utility.dll" "$@"
|