moving more bits around

This commit is contained in:
benfry
2011-01-26 20:14:17 +00:00
parent e7e7356396
commit d946769bfe
4 changed files with 22 additions and 41 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
APPDIR="$(dirname -- "${0}")"
# includes java/* in case a Java install is available
for LIB in \
java/lib/rt.jar \
java/lib/tools.jar \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
done
export CLASSPATH
export PATH="${APPDIR}/java/bin:${PATH}"
#java processing.app.Commander $*
# if you know a better way to do this, submit it to dev.processing.org/bugs
java processing.app.Commander "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"