From 7c0c84d2dd96a79debe56776d27705e5ffb8b771 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 18 Jul 2023 18:06:44 +0200 Subject: [PATCH] Allow unawaited installation of chocolatey --- scripts/Windows/Software/chocolatey/profile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/Software/chocolatey/profile.ps1 b/scripts/Windows/Software/chocolatey/profile.ps1 index c9af04c3..07395bd1 100644 --- a/scripts/Windows/Software/chocolatey/profile.ps1 +++ b/scripts/Windows/Software/chocolatey/profile.ps1 @@ -3,4 +3,4 @@ if (-not (Test-Path -PathType Leaf $PROFILE)) { New-Item -Force $PROFILE; } -choco install --force chocolatey; +choco install -y --force chocolatey;