Skip to content

Commit

Permalink
Include java runtime version in version command
Browse files Browse the repository at this point in the history
  • Loading branch information
joeha480 committed Apr 30, 2019
1 parent c0b94f9 commit 8c454f1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/org/daisy/dotify/cli/DotifyCLI.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ public void run() throws Exception {
System.out.println("--- " + getName() + " ---");
System.out.println("Version: " + (getVersion()!=null?getVersion():"N/A"));
System.out.println("Build: " + (getBuildIdentifier()!=null?getBuildIdentifier():"N/A"));
System.out.println("Java runtime: " + System.getProperty("java.version"));
ExitCode.OK.exitSystem();
}
Class<? extends Object> clazz = commands.get(args[0]);
Expand Down

0 comments on commit 8c454f1

Please sign in to comment.