Skip to content

Commit 9f0fa24

Browse files
committed
cargo-install: move binaries from the build dir if possible
Try moving the binaries (and fall back to copying) if the build directory is a temporary one (source isn't a local path).
1 parent 9ea1f2a commit 9f0fa24

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/cargo/ops/cargo_install.rs

+6
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ pub fn install(root: Option<&str>,
131131
let staging_dir = try!(TempDir::new_in(&dst, "cargo-install"));
132132
for &(bin, src) in binaries.iter() {
133133
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+
}
134140
try!(fs::copy(src, &dst).chain_error(|| {
135141
human(format!("failed to copy `{}` to `{}`", src.display(),
136142
dst.display()))

0 commit comments

Comments
 (0)