Skip to content

Commit

Permalink
remove erroneous package inclusion during package-properties evaluati…
Browse files Browse the repository at this point in the history
…on (#9614)
  • Loading branch information
scbedd authored Jan 15, 2025
1 parent 08cf4f5 commit 4f29ba2
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 @@ -173,7 +173,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {

foreach ($file in $targetedFiles) {
$filePath = (Join-Path $RepoRoot $file)
$shouldInclude = $filePath -like "$pkgDirectory*"
$shouldInclude = $filePath -like (Join-Path "$pkgDirectory" "*")
if ($shouldInclude) {
$packagesWithChanges += $pkg

Expand Down

0 comments on commit 4f29ba2

Please sign in to comment.