Skip to content

Commit

Permalink
Fix arg desc
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoPangxie732 committed Jan 26, 2024
1 parent 687f216 commit da799fb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ public static void main(String[] args) throws Throwable {
ArgumentAcceptingOptionSpec<Path> outputDecompO = parser.accepts("decompiled-output", "Decompiled output directory. " +
"Will be deleted before decompiling if it exists").withRequiredArg().withValuesConvertedBy(new PathConverter());
ArgumentAcceptingOptionSpec<String> decompileO = parser.acceptsAll(of("d", "decompile"), "Decompile the " +
"deobfuscated jar. Values are \"fernflower\", \"forgeflower\", \"cfr\" and \"user-defined\" or the custom decompiler name. " +
"Defaults to forgeflower. If the decompiler does not exist, the program will crash.").withOptionalArg()
.defaultsTo(VineflowerDecompiler.NAME);
"deobfuscated jar. Values are \"fernflower\", \"forgeflower\", \"cfr\", \"vineflower\", and \"user-defined\" " +
"or the custom decompiler name. Defaults to \"vineflower\". If the decompiler does not exist, the program will crash.")
.withOptionalArg().defaultsTo(VineflowerDecompiler.NAME);
ArgumentAcceptingOptionSpec<Path> tempDirO = parser.accepts("temp", "Temp directory for saving unzipped and remapped " +
"files.").withRequiredArg().withValuesConvertedBy(new PathConverter());
ArgumentAcceptingOptionSpec<Path> extraJarsO = parser.acceptsAll(of("e", "extra-jars"), "Extra jars used to get class " +
Expand Down

0 comments on commit da799fb

Please sign in to comment.