Skip to content

Commit

Permalink
Fixed message for wrong output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
zzambers committed Mar 23, 2021
1 parent c10112e commit 019c045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jckextractor/TestExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public static Options processArgs(String[] args) {
/* Checks for output-dir */
Path outputDir = fs.getPath(options.outputDirArg);
if (!Files.isDirectory(outputDir)) {
System.err.println("ERR: Wrong output-dir: " + options.outputDir);
System.err.println("ERR: Wrong output-dir: " + options.outputDirArg);
System.exit(1);
}
options.outputDir = outputDir.toAbsolutePath();
Expand Down

0 comments on commit 019c045

Please sign in to comment.