
Our development workflow tooling prevents trailing blank lines from being added, but some such lines remain from before that was enforced. Remove them to make it easier to rename files without triggering enforcement.
12 lines
236 B
Bash
Executable File
12 lines
236 B
Bash
Executable File
#!/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"
|