From 28d4c61bb0b3b6b20d57a0dd970af83265bb0ad2 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 24 Jun 2025 14:48:24 +0200 Subject: fix(yt/update/grouped): Don't drop the verbosity level Otherwise, the sub-processes run with the default verbosity level. --- crates/yt/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/yt/src/main.rs b/crates/yt/src/main.rs index 744fe5f..f78c23e 100644 --- a/crates/yt/src/main.rs +++ b/crates/yt/src/main.rs @@ -205,6 +205,7 @@ async fn main() -> Result<()> { let status = std::process::Command::new( current_exe().context("Failed to get the current exe to re-execute")?, ) + .args((0..args.verbosity).map(|_| "-v")) .arg("update") .args(["--current-progress", current_progress.to_string().as_str()]) .args(["--total-number", total_number.to_string().as_str()]) -- cgit 1.4.1