fix(db-load-git): normalize ConfigDir with Resolve-Path for reliable Ext/ path matching

FullName returns canonical Windows paths, but ConfigDir could have
forward slashes. Resolve-Path ensures consistent format so the
Replace() in Ext/ recursion always matches.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Nick Shirokov
2026-03-13 10:43:11 +03:00
parent 5414ac373e
commit 733418e630
@@ -165,7 +165,8 @@ try {
# --- Get changed files from Git ---
$changedFiles = @()
$configDirNormalized = $ConfigDir.TrimEnd('\', '/').Replace('\', '/')
$ConfigDir = (Resolve-Path $ConfigDir).Path.TrimEnd('\')
$configDirNormalized = $ConfigDir.Replace('\', '/')
Push-Location $ConfigDir
try {