mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-11 20:15:07 -05:00
9 lines
226 B
Bash
9 lines
226 B
Bash
|
#!/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"
|