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 a66dd2f commit 81443efCopy full SHA for 81443ef
eng/scripts/Language-Settings.ps1
@@ -48,6 +48,12 @@ function Get-python-AdditionalValidationPackagesFromPackageSet {
48
$targetedFiles += $diff.DeletedFiles
49
}
50
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) }
55
+ }
56
+
57
if ($targetedFiles) {
58
foreach($file in $targetedFiles) {
59
$pathComponents = $file -split "/"
0 commit comments