From 67a90200df5583904db7ba7dd5f186b7e7bdd186 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 19 Jul 2023 16:07:58 +0200 Subject: [PATCH] Fix interactive command --- scripts/Windows/Config/chocolatey/Install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/Config/chocolatey/Install.ps1 b/scripts/Windows/Config/chocolatey/Install.ps1 index 40d68ac02..0e527fb54 100644 --- a/scripts/Windows/Config/chocolatey/Install.ps1 +++ b/scripts/Windows/Config/chocolatey/Install.ps1 @@ -1,6 +1,6 @@ #!/bin/pwsh powershell -c 'New-Item -Force $PROFILE'; -choco install --force chocolatey; +choco install -y --force chocolatey; Copy-Item -Force (powershell -c '$PROFILE') $PROFILE; Push-Location ~;