openrocket/core/run.sh
Sampo Niskanen 48d094a1a9 Fix run.sh
2012-08-04 08:46:33 +00:00

26 lines
486 B
Bash
Executable File

#!/bin/bash
#
# This script runs the version of OpenRocket compiled by Eclipse from
# the bin/ directory. You can provide Java arguments and OpenRocket
# arguments.
#
JAVAOPTS=""
while echo "$1" | grep -q "^-" ; do
JAVAOPTS="$JAVAOPTS $1"
shift
done
LIBS="bin/"
LIBS="$LIBS:resources/"
for i in lib/*.jar ; do
LIBS="$LIBS:$i"
done
LIBS="$LIBS:lib/jogl/gluegen-rt.jar"
LIBS="$LIBS:lib/jogl/jogl.all.jar"
java -cp $LIBS $JAVAOPTS net.sf.openrocket.startup.Startup "$@"