moving to core/
authorkruland2607 <kruland2607@180e2498-e6e9-4542-8430-84ac67f01cd8>
Sun, 8 Jan 2012 02:48:46 +0000 (02:48 +0000)
committerkruland2607 <kruland2607@180e2498-e6e9-4542-8430-84ac67f01cd8>
Sun, 8 Jan 2012 02:48:46 +0000 (02:48 +0000)
git-svn-id: https://openrocket.svn.sourceforge.net/svnroot/openrocket/trunk@313 180e2498-e6e9-4542-8430-84ac67f01cd8

core/run.sh [new file with mode: 0755]
run.sh [deleted file]

diff --git a/core/run.sh b/core/run.sh
new file mode 100755 (executable)
index 0000000..1828ef7
--- /dev/null
@@ -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 (executable)
index 1828ef7..0000000
--- 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 "$@"
-