Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ class GenerateCitationKeys implements Runnable {
private JabKit.SharedOptions sharedOptions = new JabKit.SharedOptions();

// [impl->req~jabkit.cli.input-flag~1]
@Option(names = {"--input"}, converter = CygWinPathConverter.class, description = "Input BibTeX file", required = true)
@Option(names = {"--input"}, converter = CygWinPathConverter.class, description = "Input .bib file", required = true)
private Path inputFile;

@Option(names = "--output", description = "The output .bib file.")
@Option(names = "--output", description = "The output .bib file")
private Path outputFile;

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public static class SharedOptions {
@Option(names = {"-p", "--porcelain"}, description = "Enable script-friendly output")
boolean porcelain;

@Option(names = {"-h", "--help"}, usageHelp = true, description = "display this help message")
@Option(names = {"-h", "--help"}, usageHelp = true, description = "Display this help message")
private boolean usageHelpRequested = true;
}
}
Loading