From eab7c607cd5f865c6c66b5e50aae85fc63479b42 Mon Sep 17 00:00:00 2001 From: Micah Date: Tue, 3 Oct 2023 07:22:47 -0700 Subject: [PATCH] Don't include package author in CLI help (#793) LPG is at the moment listed by name and email in the `help` for Rojo. We should probably remove that before cutting a new release. --- src/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 36b329404..065128fb6 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -25,7 +25,7 @@ pub use self::upload::UploadCommand; /// Command line options that Rojo accepts, defined using the clap crate. #[derive(Debug, Parser)] -#[clap(name = "Rojo", version, about, author)] +#[clap(name = "Rojo", version, about)] pub struct Options { #[clap(flatten)] pub global: GlobalOptions,