You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/.*//'`"
|
|
RESOURCES="$BUNDLE/Contents/Resources"
|
|
|
|
echo "BUNDLE: $BUNDLE"
|
|
echo "RESOURCES: $RESOURCES"
|
|
|
|
export DYLD_LIBRARY_PATH=$RESOURCES/lib
|
|
|
|
exec "$RESOURCES/bin/Executable"
|
|
|