From cd6d5fcd9b997f5f4780abbc143123102388fcaf Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 13 Mar 2024 22:30:14 +0100 Subject: [PATCH] Fix broken installer call --- 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 0529cc34..c9195532 100644 --- a/scripts/Windows/OS/InitialBoot.ps1 +++ b/scripts/Windows/OS/InitialBoot.ps1 @@ -10,4 +10,4 @@ refreshenv; Set-Location C:/; git clone https://git.nuth.ch/manuth/PortValhalla.git; Set-Location PortValhalla; -pwsh -Command ". ./scripts/Windows/Software/winget/install.ps1; Install-Winget"; +pwsh -Command { . ./scripts/Windows/Software/winget/install.ps1; Install-Winget };