Linux: arduino startup script needs "" around $CURDIR, otherwise

it will fail when folders have spaces. Found in a comment at #2982
This commit is contained in:
Federico Fissore 2015-06-12 10:47:55 +02:00
parent a755dd7694
commit b1a5038c69
1 changed files with 1 additions and 1 deletions

View File

@ -33,4 +33,4 @@ if [ -x ./java/bin/java ]; then
JAVA=./java/bin/java
fi
$JAVA -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel $SPLASH processing.app.Base --curdir $CURDIR "$@"
$JAVA -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel $SPLASH processing.app.Base --curdir "$CURDIR" "$@"