Skip to content

Commit e557039

Browse files
azure-sdkscbedd
andauthored
remove erroneous package inclusion during package-properties evaluation (#23948)
Co-authored-by: Scott Beddall <scbedd@microsoft.com>
1 parent 0fb4336 commit e557039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/common/scripts/Package-Properties.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function Get-PrPkgProperties([string]$InputDiffJson) {
173173

174174
foreach ($file in $targetedFiles) {
175175
$filePath = (Join-Path $RepoRoot $file)
176-
$shouldInclude = $filePath -like "$pkgDirectory*"
176+
$shouldInclude = $filePath -like (Join-Path "$pkgDirectory" "*")
177177
if ($shouldInclude) {
178178
$packagesWithChanges += $pkg
179179

0 commit comments

Comments
 (0)