From 3648e597d512479012409212d7e34aed8186814c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 13 Mar 2024 20:07:38 +0100 Subject: [PATCH] Fix incorrect `winget` installation statement --- scripts/Windows/OS/InitialBoot.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/Windows/OS/InitialBoot.ps1 b/scripts/Windows/OS/InitialBoot.ps1 index 3ac8c4d5..a8898e0d 100644 --- a/scripts/Windows/OS/InitialBoot.ps1 +++ b/scripts/Windows/OS/InitialBoot.ps1 @@ -1,3 +1,5 @@ +. "./scripts/Windows/Software/winget/Install.ps1"; + [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')); @@ -10,4 +12,4 @@ refreshenv; Set-Location C:/; git clone https://git.nuth.ch/manuth/PortValhalla.git; Set-Location PortValhalla; -pwsh ./scripts/Windows/Software/winget/Install.ps1; +Install-Winget;