1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-18 12:54:25 +01:00

Added newline at the end of --version output

See #7549
This commit is contained in:
Cristian Maglie 2018-05-22 17:48:29 +02:00
parent 24029c5ace
commit a76588cf5d

View File

@ -488,7 +488,7 @@ public class Base {
} else if (parser.isGetPrefMode()) {
BaseNoGui.dumpPrefs(parser);
} else if (parser.isVersionMode()) {
System.out.print("Arduino: " + BaseNoGui.VERSION_NAME_LONG);
System.out.println("Arduino: " + BaseNoGui.VERSION_NAME_LONG);
System.exit(0);
}
}