refactor!: rename bb to bluebuild (#50)

This commit is contained in:
Hikari 2024-02-06 18:55:38 -06:00 committed by GitHub
parent 7cfa191e2a
commit 2492bb0eee
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 23 additions and 23 deletions

View file

@ -114,7 +114,7 @@ pub struct BuildCommand {
///
/// For example:
///
/// bb build --public-key env://PUBLIC_KEY ...
/// bluebuild build --public-key env://PUBLIC_KEY ...
#[cfg(feature = "sigstore")]
#[arg(long)]
#[builder(default, setter(into, strip_option))]
@ -128,7 +128,7 @@ pub struct BuildCommand {
///
/// For example:
///
/// bb build --private-key env://PRIVATE_KEY ...
/// bluebuild build --private-key env://PRIVATE_KEY ...
#[cfg(feature = "sigstore")]
#[arg(long)]
#[builder(default, setter(into, strip_option))]

View file

@ -18,7 +18,7 @@ impl BlueBuildCommand for CompletionsCommand {
generate(
self.shell,
&mut BlueBuildArgs::command(),
"bb",
"bluebuild",
&mut std::io::stdout().lock(),
);