Skip to content

Commit

Permalink
ripme.jar --version prints version on stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
soloturn committed Jan 16, 2022
1 parent 5d55fd5 commit b715931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/rarchives/ripme/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static void main(String[] args) throws IOException {
CommandLine cl = getArgs(args);

if (args.length > 0 && cl.hasOption('v')){
logger.info(UpdateUtils.getThisJarVersion());
System.out.println(UpdateUtils.getThisJarVersion());
System.exit(0);
}

Expand Down

0 comments on commit b715931

Please sign in to comment.