11 lines
150 B
Bash
Executable file
11 lines
150 B
Bash
Executable file
#!/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" "$@"
|