From 39ba5f63bcc8b64aafcbdd9766ebe137aac64517 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 13 Mar 2024 20:57:46 +0100 Subject: [PATCH] Fix incorrect script path --- scripts/Windows/OS/InitialBoot.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/OS/InitialBoot.ps1 b/scripts/Windows/OS/InitialBoot.ps1 index a8898e0d..f28f82c2 100644 --- a/scripts/Windows/OS/InitialBoot.ps1 +++ b/scripts/Windows/OS/InitialBoot.ps1 @@ -1,4 +1,4 @@ -. "./scripts/Windows/Software/winget/Install.ps1"; +. "$PSScriptRoot/../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'));