Skip to content

Commit

Permalink
Sync eng/common directory with azure-sdk-tools for PR 9308 (Azure#38311)
Browse files Browse the repository at this point in the history
Remove unnecessary Resolve-Path in Get-PrPkgProperties

Co-authored-by: Scott Beddall <[email protected]>
  • Loading branch information
2 people authored and allenkim0129 committed Nov 5, 2024
1 parent 63dd783 commit cab8727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eng/common/scripts/Package-Properties.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cab8727

Please sign in to comment.