From 0c5b8099cb6101c64d8eb69c19d9e015866b7d54 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 6 Jan 2022 05:34:28 +0200 Subject: [PATCH] Pass -Force instead of -Confirm to powershell update (fix #825) --- src/steps/powershell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/powershell.rs b/src/steps/powershell.rs index 4a0a09c3..fcb0acb4 100644 --- a/src/steps/powershell.rs +++ b/src/steps/powershell.rs @@ -73,7 +73,7 @@ impl Powershell { } if ctx.config().yes(Step::Powershell) { - cmd.push("-Confirm") + cmd.push("-Force") } println!("Updating modules...");