Skip to content

Commit

Permalink
Fix pre commit hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquinffernandez committed Oct 27, 2022
1 parent 9b6204b commit d78db5d
Show file tree
Hide file tree
Showing 3 changed files with 537 additions and 513 deletions.
2 changes: 1 addition & 1 deletion .hooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def get_files():
'--name-only', 'HEAD']).split()

def apply_code_style():
files = filter(lambda x: x.find('tests/integration/gt_data') == -1, get_files())
files = filter(lambda x: x.find('tests/system/gt_data') == -1, get_files())

files = filter(lambda x: x.endswith('.c') or
x.endswith('.h') or
Expand Down
Loading

0 comments on commit d78db5d

Please sign in to comment.