From 5074280f169e6b0e69f8a546a421d91b77f06d5d Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 3 Dec 2020 21:48:53 +0200 Subject: [PATCH] Remove AcceptLicense (fix #572) --- src/steps/powershell.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/steps/powershell.rs b/src/steps/powershell.rs index a936bc79..02641acc 100644 --- a/src/steps/powershell.rs +++ b/src/steps/powershell.rs @@ -59,10 +59,6 @@ impl Powershell { let mut cmd = vec!["Update-Module"]; - if ctx.config().yes() { - cmd.push("-AcceptLicense"); - } - if ctx.config().verbose() { cmd.push("-Verbose") }