Powershell module update is too verbose

This commit is contained in:
Roey Darwish Dror
2019-11-27 22:31:25 +02:00
parent 738c7c84c1
commit e299ee6af3

View File

@@ -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()
}