We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3edd81e commit 4382f8dCopy full SHA for 4382f8d
1 file changed
src/package.rs
@@ -444,6 +444,10 @@ fn merge_packages(inputs: Vec<PathBuf>) {
444
let files: Vec<_> = archive.file_names().map(|x| x.to_string()).collect();
445
446
for file in files {
447
+ // skip files in folders
448
+ if file.contains('/') {
449
+ continue;
450
+ }
451
if potential_names.iter().any(|x| file.ends_with(*x)) {
452
println!("{}", file);
453
0 commit comments