mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 09:45:06 +00:00
11 lines
149 B
Text
11 lines
149 B
Text
|
#!/bin/sh
|
||
|
|
||
|
APP_DIR=`dirname $0`
|
||
|
APP_DIR=`cd "$APP_DIR";pwd`
|
||
|
|
||
|
export LD_LIBRARY_PATH="$APP_DIR/usr/lib"
|
||
|
|
||
|
cd "$APP_DIR"
|
||
|
|
||
|
exec "./usr/bin/furnace" "$@"
|