Skip to content

Commit

Permalink
print libraries and sharedconfig in help
Browse files Browse the repository at this point in the history
  • Loading branch information
poison committed Dec 4, 2015
1 parent df04a27 commit 043e3cc
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ public static void main(String[] args) throws IOException, RecognitionException,
if (commandLine.hasOption("h")) {
HelpFormatter formatter=new HelpFormatter();
formatter.printHelp("java -jar steam-scraper-*.one-jar.jar", options);
PathResolver pathResolver=new PathResolver();
System.out.println("\nlibrary directories:\n"+Joiner.on("\n").join(pathResolver.findAllLibraryDirectories()));
System.out.println("\nsharedconfig files:\n"+Joiner.on("\n").join(pathResolver.findSharedConfig()));
System.exit(0);
}

Expand Down

0 comments on commit 043e3cc

Please sign in to comment.