mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 19:45:09 -05:00
9 lines
226 B
Bash
Executable File
9 lines
226 B
Bash
Executable File
#!/bin/sh
|
|
BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/.*//'`"
|
|
RESOURCES="$BUNDLE/Contents/Resources"
|
|
|
|
export DYLD_FRAMEWORK_PATH=$RESOURCES/Frameworks
|
|
export DYLD_LIBRARY_PATH=$RESOURCES/bin
|
|
|
|
exec "$RESOURCES/soh-macos"
|