From 118b653a632710f9b0bae383fb0533faef7daa7e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 6 Aug 2024 17:07:57 +0200 Subject: [PATCH] Silence unnecessary output --- scripts/Windows/Software/chocolatey/Manage.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/Software/chocolatey/Manage.ps1 b/scripts/Windows/Software/chocolatey/Manage.ps1 index d48becad..45674d91 100644 --- a/scripts/Windows/Software/chocolatey/Manage.ps1 +++ b/scripts/Windows/Software/chocolatey/Manage.ps1 @@ -17,7 +17,7 @@ Start-SoftwareInstaller @PSBoundParameters ` } ` -Configurator { $nativeProfile = powershell -c '$PROFILE'; - New-Item -Force $nativeProfile; + $null = New-Item -Force $nativeProfile; choco install -y --force chocolatey; Copy-Item -Force $nativeProfile $PROFILE;