From 823909a847672f37ac448380c0ceb1d1396aca3a Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 8 Aug 2024 12:18:04 +0200 Subject: [PATCH] Reload env after installing git --- scripts/Windows/OS/Install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 7e025bc8..5c3b527f 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -48,6 +48,7 @@ $null = New-Module { if (-not (Test-Command "git")) { Install-ChocoPackage git; + refreshenv; continue; }