9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# cd to file containing script or something?
|
|
BASEDIR=$(dirname "$0")
|
|
echo "$BASEDIR"
|
|
cd "$BASEDIR"
|
|
|
|
exec /Library/Frameworks/Mono.framework/Versions/Current/Commands/mono ../Resources/Robust.Client.exe
|