From 9f4c4a39acc42080513052b8a396876a2077d4de Mon Sep 17 00:00:00 2001 From: b5 Date: Tue, 15 Nov 2022 10:59:32 -0500 Subject: [PATCH] default flag for progress --- xtask/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtask/src/main.rs b/xtask/src/main.rs index cdc0d2e5f3..fcc4597ba9 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -32,7 +32,7 @@ enum Commands { #[clap(short, long)] all: bool, /// Set type of progress output (auto, plain, tty). Use plain to show container output (default "auto") - #[clap(long)] + #[clap(short, long, default_value_t = String::from("auto"))] progress: String, images: Vec, },