From 96cf91c44e1b156458de2164abbb6b7c584c299a Mon Sep 17 00:00:00 2001 From: benfry Date: Thu, 6 May 2010 16:57:54 +0000 Subject: [PATCH] another fix for bug #1549 --- build/linux/processing | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build/linux/processing b/build/linux/processing index 7557c0d6f..bc16f19a6 100755 --- a/build/linux/processing +++ b/build/linux/processing @@ -99,4 +99,8 @@ log PATH # Start Processing in the same directory as this script cd "$APPDIR" -java processing.app.Base "$SKETCH" & +if [ "$1" ]; then + java processing.app.Base "$SKETCH" & +else + java processing.app.Base & +fi