Skip to content

Commit

Permalink
Fix --version bug
Browse files Browse the repository at this point in the history
Signed-off-by: kana0011 <[email protected]>
  • Loading branch information
kana0011 committed Jul 29, 2016
1 parent 19bbece commit bb13224
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ph/kana/csvv/CsvViewerJavaFx.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ public void start(Stage primaryStage) throws Exception {
public static void main(String[] args) {
if (args.length == 1 && "--version".equals(args[0])) {
System.out.println(APP_NAME);
System.out.print(VERSION);
System.out.println(VERSION);
System.exit(0);
} else {
launch(args);
}
Expand Down

0 comments on commit bb13224

Please sign in to comment.