diff --git a/src/steps/powershell.rs b/src/steps/powershell.rs index 6b5cdd89..004eb020 100644 --- a/src/steps/powershell.rs +++ b/src/steps/powershell.rs @@ -57,9 +57,10 @@ impl Powershell { let powershell = require_option(self.path.as_ref())?; print_separator("Powershell Modules Update"); + println!("Updating modules..."); run_type .execute(&powershell) - .args(&["-Command", "Update-Module", "-v"]) + .args(&["-Command", "Update-Module"]) .check_run() }