fix: conflicting short args for build subcommand
This commit is contained in:
parent
eaeb79f329
commit
150aee028b
1 changed files with 2 additions and 2 deletions
|
|
@ -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>,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue