From e2d42b77a76adb4a63b22ca77eb9269de50c68dd Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 11 Feb 2019 20:30:32 +0200 Subject: [PATCH] Run Powershell module update with verbose output --- src/steps/os/windows.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/steps/os/windows.rs b/src/steps/os/windows.rs index dada49d7..5157f1b0 100644 --- a/src/steps/os/windows.rs +++ b/src/steps/os/windows.rs @@ -84,7 +84,10 @@ impl Powershell { print_separator("Powershell Modules Update"); let success = || -> Result<(), Error> { - run_type.execute(&powershell).arg("Update-Module").check_run()?; + run_type + .execute(&powershell) + .args(&["Update-Module", "-v"]) + .check_run()?; Ok(()) }() .is_ok();