From: kruland2607 Date: Sun, 8 Jan 2012 02:48:46 +0000 (+0000) Subject: moving to core/ X-Git-Tag: upstream/12.03~1^2~158 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=6a08abdfbd7292b6208ab29c4981cad9f070b710;p=debian%2Fopenrocket moving to core/ git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@313 180e2498-e6e9-4542-8430-84ac67f01cd8 --- diff --git a/core/run.sh b/core/run.sh new file mode 100755 index 00000000..1828ef78 --- /dev/null +++ b/core/run.sh @@ -0,0 +1,18 @@ +#!/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 + + +java -cp bin/:lib/miglayout15-swing.jar:lib/jcommon-1.0.16.jar:lib/jfreechart-1.0.13.jar:lib/iText-5.0.2.jar:. $JAVAOPTS net.sf.openrocket.startup.Startup "$@" + diff --git a/run.sh b/run.sh deleted file mode 100755 index 1828ef78..00000000 --- a/run.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/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 - - -java -cp bin/:lib/miglayout15-swing.jar:lib/jcommon-1.0.16.jar:lib/jfreechart-1.0.13.jar:lib/iText-5.0.2.jar:. $JAVAOPTS net.sf.openrocket.startup.Startup "$@" -