From d5d04a97df3694cf78f7c8ed3ef501c9dfa152cd Mon Sep 17 00:00:00 2001 From: Coding for fun Date: Wed, 13 Dec 2023 08:45:07 +0100 Subject: [PATCH] Fix test --- resources/download/git.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/download/git.ps1 b/resources/download/git.ps1 index faa735c..a8372e1 100644 --- a/resources/download/git.ps1 +++ b/resources/download/git.ps1 @@ -7,7 +7,7 @@ if (! (Get-Command git )) { New-Item -ItemType Directory -Force -Path mount\git > $null Set-Location mount\git -if (! (Test-Path .\PatchaPalooza )) { +if (Test-Path .\PatchaPalooza) { # Remove PatchaPalooza directory if it exists since we do a local patch Remove-Item -Recurse -Force .\PatchaPalooza > $null 2>&1 }