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