Run Powershell module update with verbose output

This commit is contained in:
Roey Darwish Dror
2019-02-11 20:30:32 +02:00
parent f56b107697
commit e2d42b77a7

View File

@@ -84,7 +84,10 @@ impl Powershell {
print_separator("Powershell Modules Update"); print_separator("Powershell Modules Update");
let success = || -> Result<(), Error> { let success = || -> Result<(), Error> {
run_type.execute(&powershell).arg("Update-Module").check_run()?; run_type
.execute(&powershell)
.args(&["Update-Module", "-v"])
.check_run()?;
Ok(()) Ok(())
}() }()
.is_ok(); .is_ok();