Skip to content

Commit

Permalink
Add space between command and arguments when executing linux command …
Browse files Browse the repository at this point in the history
…to open browser. Refs #682 (#683)

Co-authored-by: Ric Emery <[email protected]>
  • Loading branch information
ricemery and Ric Emery authored Jul 26, 2023
1 parent 8bf42f2 commit 1dfb59c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ private static void openDefaultSystemBrowserInLinux(URL url){
if (openToolPath != null) {
Runtime runtime = Runtime.getRuntime();
try {
runtime.exec(openTool + url);
runtime.exec(openTool + " " + url);
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 1dfb59c

Please sign in to comment.