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.
This commit is contained in:
Micah
2023-10-03 07:22:47 -07:00
committed by GitHub
parent 3cafbf7f1a
commit eab7c607cd

View File

@@ -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,