From 53109eea7589b3c6861c8792571e641159ec04e4 Mon Sep 17 00:00:00 2001 From: benfry Date: Sun, 16 Jul 2006 12:44:36 +0000 Subject: [PATCH] fix for bug 373, incorrect shell syntax --- build/linux/dist/processing | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/linux/dist/processing b/build/linux/dist/processing index 05afbdb12..6fb24c50f 100755 --- a/build/linux/dist/processing +++ b/build/linux/dist/processing @@ -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