We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b74fb6d commit e452927Copy full SHA for e452927
src/dist/component/package.rs
@@ -439,13 +439,11 @@ fn unpack_without_first_dir<R: Read>(
439
None => {
440
// Tar has item before containing directory
441
// Complain about this so we can see if these exist.
442
- use std::io::Write as _;
443
- writeln!(
444
- dl_cfg.process.stderr().lock(),
445
- "Unexpected: missing parent '{}' for '{}'",
+ warn!(
+ "unexpected: missing parent '{}' for '{}'",
446
parent.display(),
447
entry.path()?.display()
448
- )?;
+ );
449
directories.insert(parent.to_owned(), DirStatus::Pending(vec![item]));
450
item = Item::make_dir(parent.to_owned(), 0o755);
451
// Check the parent's parent
0 commit comments