diff --git a/arduino-core/src/processing/app/windows/Platform.java b/arduino-core/src/processing/app/windows/Platform.java index 15647dd0e..394a915ce 100644 --- a/arduino-core/src/processing/app/windows/Platform.java +++ b/arduino-core/src/processing/app/windows/Platform.java @@ -126,7 +126,7 @@ public class Platform extends processing.app.Platform { // open dos prompt, give it 'start' command, which will // open the url properly. start by itself won't work since // it appears to need cmd - Runtime.getRuntime().exec("cmd /c start " + url); + Runtime.getRuntime().exec("cmd /c start \"\" \"" + url + "\""); } else { // just launching the .html file via the shell works // but make sure to chmod +x the .html files first