10 lines
263 B
Bash
Executable File
10 lines
263 B
Bash
Executable File
#!/usr/bin/env -i bash
|
|
|
|
# cd to file containing script or something?
|
|
BASEDIR=$(dirname "$0")
|
|
echo "$BASEDIR"
|
|
cd "$BASEDIR"
|
|
|
|
# TODO: unhardcode this, probably ship Mono with SS14.
|
|
/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono ./SS14.Client.exe
|