Skip to content

Commit a76588c

Browse files
committed
Added newline at the end of --version output
See #7549
1 parent 24029c5 commit a76588c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/processing/app/Base.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public Base(String[] args) throws Exception {
488488
} else if (parser.isGetPrefMode()) {
489489
BaseNoGui.dumpPrefs(parser);
490490
} else if (parser.isVersionMode()) {
491-
System.out.print("Arduino: " + BaseNoGui.VERSION_NAME_LONG);
491+
System.out.println("Arduino: " + BaseNoGui.VERSION_NAME_LONG);
492492
System.exit(0);
493493
}
494494
}

0 commit comments

Comments
 (0)