Skip to content

Commit

Permalink
Extra CLI arg
Browse files Browse the repository at this point in the history
  • Loading branch information
shartte committed Dec 14, 2024
1 parent abf54e1 commit a267e14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/neoforged/neoform/runtime/cli/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import static picocli.CommandLine.Option;
import static picocli.CommandLine.ScopeType;

@Command(name = "neoform-runtime", subcommands = {RunNeoFormCommand.class, DownloadAssetsCommand.class, CleanCacheCommand.class, CacheMaintenance.class}, mixinStandardHelpOptions = true)
@Command(name = "neoform-runtime", subcommands = {CommandLine.HelpCommand.class, RunNeoFormCommand.class, DownloadAssetsCommand.class, CleanCacheCommand.class, CacheMaintenance.class}, mixinStandardHelpOptions = true)
public class Main {
@Option(names = "--home-dir", scope = ScopeType.INHERIT, description = "Where NFRT should store caches.")
Path homeDir = getDefaultHomeDir();
Expand Down

0 comments on commit a267e14

Please sign in to comment.