You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 21, 2019. It is now read-only.
Fails here when a dependency contains a soft symlink that needs to be copied (failed to copy /home/joel/.cargo/git/checkouts/foo/sha1/foo/bar to /home/joel/dev/baz/vendor/foo/bar).
Where foo/bar is a symlink to another directory in the crate. I can replicate the same kinda thing with cp foo/bar dest, needs to be cp --no-dereference foo/bar dest. I don't know how to do the same thing with fs::copy, I haven't run in to that with std before. Would it need to check is_symlink and std::os::unix::fs::symlink manually?
The text was updated successfully, but these errors were encountered:
This crate is now included natively in Cargo as of rust-lang/cargo#6869 and today's nightly Rust. I'm closing all issues in this repository before I archive the repository, but if you're still interested in seeing this issue fixed then please feel free to file an issue with Cargo itself!
Fails here when a dependency contains a soft symlink that needs to be copied (
failed to copy /home/joel/.cargo/git/checkouts/foo/sha1/foo/bar to /home/joel/dev/baz/vendor/foo/bar
).Where
foo/bar
is a symlink to another directory in the crate. I can replicate the same kinda thing withcp foo/bar dest
, needs to becp --no-dereference foo/bar dest
. I don't know how to do the same thing withfs::copy
, I haven't run in to that with std before. Would it need to check is_symlink andstd::os::unix::fs::symlink
manually?The text was updated successfully, but these errors were encountered: