fix: conflicting short args for build subcommand

This commit is contained in:
Gerald Pinder 2024-01-13 22:04:35 -05:00
parent eaeb79f329
commit 150aee028b

View file

@ -63,13 +63,13 @@ pub struct BuildCommand {
/// The username to login to the /// The username to login to the
/// container registry. /// container registry.
#[arg(short, long)] #[arg(short = 'U', long)]
#[builder(default, setter(into))] #[builder(default, setter(into))]
username: Option<String>, username: Option<String>,
/// The password to login to the /// The password to login to the
/// container registry. /// container registry.
#[arg(short, long)] #[arg(short = 'P', long)]
#[builder(default, setter(into))] #[builder(default, setter(into))]
password: Option<String>, password: Option<String>,
} }