9 lines
252 B
Bash
Executable File
9 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
if command -v mono >/dev/null 2>&1 && [ "$(grep -c .NETCoreApp,Version= bin/OpenRA.Utility.dll)" = "0" ]; then
|
|
RUNTIME_LAUNCHER="mono --debug"
|
|
else
|
|
RUNTIME_LAUNCHER="dotnet"
|
|
fi
|
|
|
|
ENGINE_DIR=.. ${RUNTIME_LAUNCHER} bin/OpenRA.Utility.dll "$@"
|