Skip to content

Commit

Permalink
Remove dbg!() from build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
pheki committed Sep 22, 2023
1 parent 80db89c commit e396030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ fn localize_bindings(original_include: &Utf8Path, localized_include: &Utf8Path)
_ => Err(e),
})
.unwrap();
for entry in dbg!(original_include).read_dir_utf8().unwrap() {
for entry in original_include.read_dir_utf8().unwrap() {
let entry = entry.unwrap();
let local_entry = local_include.join(entry.file_name());
let original_entry = entry.path();
Expand Down

0 comments on commit e396030

Please sign in to comment.