Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cargo/ops/vendor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ fn sync(
// This fallback is worked for sometimes `fs::rename` failed in a specific situation, such as:
// - In Windows 10 versions earlier than 1607, the destination of `fs::rename` can't be a directory in older versions.
// - `from` and `to` are on separate filesystems.
// - AntiVirus or our system indexer are doing stuf simultaneously.
// - AntiVirus or our system indexer are doing stuff simultaneously.
// - Any other reasons documented in std::fs::rename.
tracing::warn!("failed to `mv {unpacked_src:?} {dst:?}`: {e}");
let paths: Vec<_> = walkdir(&unpacked_src).map(|e| e.into_path()).collect();
Expand Down