Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Fix #1888 Add the dir-excluding pattern where it belongs
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Dec 16, 2011
1 parent ed5a331 commit bc0b610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/excludes.js
Expand Up @@ -137,7 +137,7 @@ function test (file, excludeList) {
&& rf.slice(-1) === "/"
&& excludes.indexOf(ex + "/**") === -1) {
// log.warn(ex + "/**", "adding dir-matching exclude pattern")
excludes.push(ex + "/**")
excludes.splice(ii, 1, ex, ex + "/**")
ll ++
}
}
Expand Down

0 comments on commit bc0b610

Please sign in to comment.