mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
fix for bug 373, incorrect shell syntax
This commit is contained in:
Vendored
+2
-1
@@ -25,7 +25,8 @@ export PATH
|
||||
#
|
||||
#echo $APPDIR/jikes
|
||||
"$APPDIR/jikes" -version 1> /dev/null 2> /dev/null
|
||||
if [ $? == 0 ]
|
||||
# if stmt modified as per bug #373
|
||||
if [ $? -eq 0 ]
|
||||
then
|
||||
# need to cd to the dir because subfolders like lib et al need to be ready
|
||||
cd "$APPDIR" && java processing.app.Base
|
||||
|
||||
Reference in New Issue
Block a user