From 1a55b12015212aedd7791f1e0c8a011d2b0fc214 Mon Sep 17 00:00:00 2001 From: Kaya Gokalp Date: Tue, 14 May 2024 17:12:50 -0700 Subject: [PATCH] feat: only show examples with explicit --help flag --- forc/src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forc/src/cli/mod.rs b/forc/src/cli/mod.rs index 055eb92120a..76a75416d31 100644 --- a/forc/src/cli/mod.rs +++ b/forc/src/cli/mod.rs @@ -43,7 +43,7 @@ fn help() -> &'static str { } #[derive(Debug, Parser)] -#[clap(name = "forc", about = "Fuel Orchestrator", version, after_help = help())] +#[clap(name = "forc", about = "Fuel Orchestrator", version, after_long_help = help())] struct Opt { /// The command to run #[clap(subcommand)]