diff --git a/Cargo.lock b/Cargo.lock index 8008791..aa14715 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1047,7 +1047,7 @@ dependencies = [ [[package]] name = "molnctl" -version = "0.10.1" +version = "0.11.0" dependencies = [ "anyhow", "camino", diff --git a/src/commands/services.rs b/src/commands/services.rs index 9e69b8b..db37d36 100644 --- a/src/commands/services.rs +++ b/src/commands/services.rs @@ -520,7 +520,7 @@ fn get_image_tag(tag: &Option) -> Result { pub struct ImageName { #[arg(help = "The service name to update")] service: String, - #[arg(short, long, help = "Container name to update (within the service)")] + #[arg(long, help = "Container name to update (within the service)")] container: Option, #[arg(short, long, help = "Image tag to use")] tag: Option,