Skip to content

Commit cac568f

Browse files
committed
Fix missing trailing parameters when opening URL's
1 parent 3076c63 commit cac568f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/processing/app/windows/Platform.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public void openURL(String url) throws Exception {
134134
// open dos prompt, give it 'start' command, which will
135135
// open the url properly. start by itself won't work since
136136
// it appears to need cmd
137-
Runtime.getRuntime().exec("cmd /c start " + url);
137+
Runtime.getRuntime().exec("cmd /c start \"\" \"" + url + "\"");
138138
} else {
139139
// just launching the .html file via the shell works
140140
// but make sure to chmod +x the .html files first

0 commit comments

Comments
 (0)