Skip to content

Commit

Permalink
copyright check: Exclude .venv in source tree
Browse files Browse the repository at this point in the history
  • Loading branch information
dneto0 committed Dec 3, 2020
1 parent 6216d09 commit 1520e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/add_copyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def filtered_descendants(glob):
"""Returns glob-matching filenames under the current directory, but skips
some irrelevant paths."""
return find('.', glob, ['third_party', 'external', 'build*', 'out*',
'CompilerIdCXX'])
'CompilerIdCXX', '.venv'])


def skip(line):
Expand Down

0 comments on commit 1520e40

Please sign in to comment.