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 11d728f commit a5ca37dCopy full SHA for a5ca37d
eng/scripts/Language-Settings.ps1
@@ -167,7 +167,7 @@ function Get-dotnet-AdditionalValidationPackagesFromPackageSet {
167
# The targetedFiles needs to filter out anything in the ExcludePaths
168
# otherwise it'll end up processing things below that it shouldn't be.
169
foreach ($excludePath in $diffObj.ExcludePaths) {
170
- $targetedFiles = $targetedFiles | Where-Object { -not $_.StartsWith($excludePath) }
+ $targetedFiles = $targetedFiles | Where-Object { -not $_.StartsWith($excludePath.TrimEnd("/") + "/") }
171
}
172
173
# this section will identify
0 commit comments