Skip to content

Commit

Permalink
chore: only copy non-test headers (#2893)
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 authored Dec 12, 2023
1 parent ae5923e commit e995bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/copy-cpp-headers.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
if connect_path.exists():
shutil.rmtree(connect_path)
connect_path.mkdir(parents=True)
for path in header_only_path.rglob("*.h"):
for path in header_only_path.rglob("*/awkward/*.h"):
dest_path = connect_path / path.name
shutil.copy(path, dest_path)

Expand Down

0 comments on commit e995bb1

Please sign in to comment.