From 8744692ed910db2a6c078225a6b7cff07845191b Mon Sep 17 00:00:00 2001 From: Scott Beddall Date: Mon, 4 Nov 2024 12:02:04 -0800 Subject: [PATCH] remove resolve-path --- eng/common/scripts/Package-Properties.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/common/scripts/Package-Properties.ps1 b/eng/common/scripts/Package-Properties.ps1 index 38d181eaac50..cf9c1b391eb1 100644 --- a/eng/common/scripts/Package-Properties.ps1 +++ b/eng/common/scripts/Package-Properties.ps1 @@ -168,7 +168,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) { $lookup[$lookupKey] = $pkg foreach ($file in $targetedFiles) { - $filePath = Resolve-Path (Join-Path $RepoRoot $file) + $filePath = (Join-Path $RepoRoot $file) $shouldInclude = $filePath -like "$pkgDirectory*" if ($shouldInclude) { $packagesWithChanges += $pkg