From e299ee6af38b8aaf49c606ec2b3f9f596f92dcf1 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Wed, 27 Nov 2019 22:31:25 +0200 Subject: [PATCH] Powershell module update is too verbose --- src/steps/powershell.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() }