mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-07-16 10:02:59 -07:00
8 lines
226 B
Bash
Executable file
8 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"
|