diff options
Diffstat (limited to '')
-rw-r--r-- | crates/yt/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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()]) |