diff --git a/src/build.rs b/src/build.rs index d6a4d21..472112d 100644 --- a/src/build.rs +++ b/src/build.rs @@ -63,13 +63,13 @@ pub struct BuildCommand { /// The username to login to the /// container registry. - #[arg(short, long)] + #[arg(short = 'U', long)] #[builder(default, setter(into))] username: Option, /// The password to login to the /// container registry. - #[arg(short, long)] + #[arg(short = 'P', long)] #[builder(default, setter(into))] password: Option, }