We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d59c0 commit 8c0f6e9Copy full SHA for 8c0f6e9
eng/scripts/Language-Settings.ps1
@@ -51,7 +51,7 @@ function Get-python-AdditionalValidationPackagesFromPackageSet {
51
# The targetedFiles needs to filter out anything in the ExcludePaths
52
# otherwise it'll end up processing things below that it shouldn't be.
53
foreach ($excludePath in $diffObj.ExcludePaths) {
54
- $targetedFiles = $targetedFiles | Where-Object { -not $_.StartsWith($excludePath) }
+ $targetedFiles = $targetedFiles | Where-Object { -not $_.StartsWith($excludePath.TrimEnd("/") + "/") }
55
}
56
57
if ($targetedFiles) {
0 commit comments