Skip to content

Commit

Permalink
Fix string concatenation (#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz authored Dec 21, 2024
1 parent d1c92f7 commit 7a5e5bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/robotbuilder/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public static void browse(final String url) {
Process p;
try {
System.out.println("firefox " + url);
p = Runtime.getRuntime().exec("firefox " + url);
p = Runtime.getRuntime().exec(new String[]{"firefox ", url});
} catch (IOException e1) {
e1.printStackTrace();
}
Expand Down

0 comments on commit 7a5e5bb

Please sign in to comment.