1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

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

View File

@ -33,4 +33,4 @@ if [ -x ./java/bin/java ]; then
JAVA=./java/bin/java JAVA=./java/bin/java
fi 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" "$@"