Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed May 15, 2024
1 parent c84229e commit 23a0edb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/xyz/wagyourtail/jvmdg/cli/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static void main(String[] args) throws IOException, ClassNotFoundExceptio
new Arguments("debug", "Set debug flags/call debug actions", null, null).addChildren(
new Arguments("--print", "Enable printing debug info", new String[]{"-p"}, null),
new Arguments("--skipStubs", "Skip method/class stubs for these class versions", new String[]{"-s"}, new String[]{"versions"}),
new Arguments("downgradeApi", "Retrieves and downgrades the java api jar", new String[]{"-d"}, new String[]{"outputPath"})
new Arguments("downgradeApi", "Retrieves and downgrades the java api jar", null, new String[]{"outputPath"})
),
new Arguments("downgrade", "Downgrades a jar or folder", null, null).addChildren(
input,
Expand Down

0 comments on commit 23a0edb

Please sign in to comment.