From e446ada460704871ec95b7fa7d5a18322d5b4fea Mon Sep 17 00:00:00 2001 From: Dipankar Das Date: Fri, 21 Jul 2023 17:04:26 +0530 Subject: [PATCH] fix: masked the spin trigger http usage message Signed-off-by: Dipankar Das --- crates/trigger/src/cli.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/trigger/src/cli.rs b/crates/trigger/src/cli.rs index 31bb76c0c..006c7013a 100644 --- a/crates/trigger/src/cli.rs +++ b/crates/trigger/src/cli.rs @@ -28,7 +28,10 @@ pub const SPIN_WORKING_DIR: &str = "SPIN_WORKING_DIR"; /// A command that runs a TriggerExecutor. #[derive(Parser, Debug)] -#[clap(next_help_heading = "TRIGGER OPTIONS")] +#[clap( + usage = "spin [COMMAND] [OPTIONS]", + next_help_heading = "TRIGGER OPTIONS" +)] pub struct TriggerExecutorCommand where Executor::RunConfig: Args,