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

Commit

Permalink
scripts: fix checkstyle testing catch.h
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Dec 17, 2015
1 parent 132a6ea commit 0370c29
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/checkstyle
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ def main():
for dir in dirs:
sources = sorted(glob.iglob(dir + '/**/*.cc', recursive=True))
headers = sorted(glob.iglob(dir + '/**/*.h', recursive=True))
headers = [f for f in headers if 'catch.h' not in f]

for name in sorted(sources + headers):
with open(name, 'rb') as f:
Expand Down

0 comments on commit 0370c29

Please sign in to comment.