From f795ea3848a3a83204e90458dcb1813b0f1504f6 Mon Sep 17 00:00:00 2001 From: Raincloud Date: Mon, 10 Nov 2025 20:41:48 -0700 Subject: [PATCH] fix gitattributes deployment --- ConfigLoader.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigLoader.ps1 b/ConfigLoader.ps1 index 3dfbb76..eacd657 100644 --- a/ConfigLoader.ps1 +++ b/ConfigLoader.ps1 @@ -255,7 +255,7 @@ if ($MyInvocation.InvocationName -ne '.') { foreach ($spec in $specs) { Write-Host "`n=== Updating $($spec.Name) ===" -ForegroundColor Magenta - $targets = Get-ChildItem -LiteralPath $resolvedProject -Recurse -Filter $spec.Name -File -ErrorAction SilentlyContinue + $targets = Get-ChildItem -LiteralPath $resolvedProject -Recurse -Filter $spec.Name -File -Force -ErrorAction SilentlyContinue $targets = $targets | Where-Object { $_.FullName -ne $spec.Source } if (-not $targets) {