Skip to content

Commit

Permalink
tweak6
Browse files Browse the repository at this point in the history
  • Loading branch information
skidder committed Nov 2, 2024
1 parent 065e189 commit 4b77b8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/verify_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def scan_deps(deps_dir: Path) -> Dict[str, str]:
if not file_path.is_file():
continue

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

# Get path relative to deps_dir
Expand Down

0 comments on commit 4b77b8e

Please sign in to comment.