diff options
Diffstat (limited to 'usr/src/tools/scripts/git-pbchk.py')
-rw-r--r-- | usr/src/tools/scripts/git-pbchk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/git-pbchk.py b/usr/src/tools/scripts/git-pbchk.py index 7f52749594..6f6c750648 100644 --- a/usr/src/tools/scripts/git-pbchk.py +++ b/usr/src/tools/scripts/git-pbchk.py @@ -172,7 +172,7 @@ def not_check(root, cmd): should be excluded from the check named by 'cmd'""" ignorefiles = list(filter(os.path.exists, - [os.path.join(root, ".git", "%s.NOT" % cmd), + [os.path.join(root, ".git/info", "%s.NOT" % cmd), os.path.join(root, "exception_lists", cmd)])) return Ignore.ignore(root, ignorefiles) |