Skip to content

Commit 0130d9c

Browse files
Allow .pdb files to be merged into .geode files (#118)
1 parent 2fad02d commit 0130d9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/package.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ fn merge_packages(inputs: Vec<PathBuf>) {
438438
.nice_unwrap("Unable to create zip writer");
439439

440440
for archive in &mut archives {
441-
let potential_names = [".dylib", ".so", ".dll", ".lib"];
441+
let potential_names = [".dylib", ".so", ".dll", ".lib", ".pdb"];
442442

443443
// Rust borrow checker lol xd
444444
let files: Vec<_> = archive.file_names().map(|x| x.to_string()).collect();

0 commit comments

Comments
 (0)