Skip to content

Commit 2c7874c

Browse files
authored
Merge pull request #7 from skidder/skidder/tweak-6
tweak6
2 parents 065e189 + 4b77b8e commit 2c7874c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/verify_deps.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def scan_deps(deps_dir: Path) -> Dict[str, str]:
3131
if not file_path.is_file():
3232
continue
3333

34-
# Only process shared and static libraries
35-
if not file_path.suffix in ['.so', '.dylib', '.a']:
34+
# Only process shared and static libraries and headers
35+
if not file_path.suffix in ['.so', '.dylib', '.a', '.h']:
3636
continue
3737

3838
# Get path relative to deps_dir

0 commit comments

Comments
 (0)