We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ea1f2a commit 9f0fa24Copy full SHA for 9f0fa24
src/cargo/ops/cargo_install.rs
@@ -131,6 +131,12 @@ pub fn install(root: Option<&str>,
131
let staging_dir = try!(TempDir::new_in(&dst, "cargo-install"));
132
for &(bin, src) in binaries.iter() {
133
let dst = staging_dir.path().join(bin);
134
+ // Try to move if `target_dir` is transient.
135
+ if !source_id.is_path() {
136
+ if fs::rename(src, &dst).is_ok() {
137
+ continue
138
+ }
139
140
try!(fs::copy(src, &dst).chain_error(|| {
141
human(format!("failed to copy `{}` to `{}`", src.display(),
142
dst.display()))
0 commit comments