Skip to content

Commit

Permalink
Don't include package author in CLI help (rojo-rbx#793)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Dekkonot authored Oct 3, 2023
1 parent 3cafbf7 commit eab7c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit eab7c60

Please sign in to comment.