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 (#32129)

Co-authored-by: Scott Beddall <scbedd@microsoft.com>
  • Loading branch information
2 people authored and santiagxf committed Jan 15, 2025
1 parent 8036774 commit 94d8360
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 94d8360

Please sign in to comment.