mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 21:59:20 +01:00
18 lines
269 B
Plaintext
Executable File
18 lines
269 B
Plaintext
Executable File
#!/bin/sh
|
|
|
|
APPDIR="$(dirname -- "${0}")"
|
|
|
|
for LIB in \
|
|
java/lib/rt.jar \
|
|
java/lib/tools.jar \
|
|
lib \
|
|
lib/build \
|
|
lib/*.jar \
|
|
;
|
|
do
|
|
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
|
|
done
|
|
export CLASSPATH
|
|
|
|
${APPDIR}/java/bin/java processing.app.Base
|