-
-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"Invalid cross-device link" when running cargo lambda new blah
on Manjaro
#70
Comments
Thanks for opening this issue! It looks like Rust The solution seems to be to capture the error and do a Copy+Delete in those cases. |
Aah, interesting. I'd expect that having Rustup's fix involved them implementing some util functions themselves to fall back to copy+delete on a failed move/rename, but this seems like the kind of thing that should be in an existing library though rather than copy/pasting code from there.
|
Ha, just seen your PR after writing the above, thanks for the quick turnaround! |
@sdd I'll probably release a new version in the next couple of days. Meanwhile you can install it by cloning the repo:
|
Will give it a go tomorrow, thanks! |
Hi @calavera - unfortunately that change didn't fix the problem. If I change pub fn rename<P, Q>(from: P, to: Q) -> io::Result<()>
where
P: AsRef<Path>,
Q: AsRef<Path>,
{
match fs::rename(&from, &to) {
Ok(ok) => Ok(ok),
Err(e) => match e.kind() {
io::ErrorKind::CrossesDevices => {
match copy_and_delete(from, to) {
Ok(()) => Ok(()),
Err(_) => Err(e),
}
},
_ => Err(e),
},
}
} |
Sounds like I think we can check against the error code directly for now until this is |
Aah, this works, without needing pub fn rename<P, Q>(from: P, to: Q) -> io::Result<()>
where
P: AsRef<Path>,
Q: AsRef<Path>,
{
match fs::rename(&from, &to) {
Ok(ok) => Ok(ok),
Err(e) if Some(libc::EXDEV) == e.raw_os_error() => {
match copy_and_delete(from, to) {
Ok(()) => Ok(()),
Err(_) => Err(e),
}
},
Err(e) => Err(e),
}
} |
io::ErrorKind::Other no longer gets returned by std as of rust-lang/rust#85746 In lieu of requiring the io_error_more feature, match against the raw_os_error directly Fixes cargo-lambda#70
~/projects cargo lambda new sa-solver-sns-result-ws-dispatcher
? Is this function an HTTP function? No
? AWS Event type that this function receives sns::SnsEvent
Error:
× failed to move package: from "/tmp/.tmpX6qXqg" to "sa-solver-sns-result-ws-dispatcher"
╰─▶ Invalid cross-device link (os error 18)
~/projects cargo lambda new sa-solver-sns-result-ws-dispatcher
? Is this function an HTTP function? No
? AWS Event type that this function receives sns::SnsEvent
Error:
× failed to move package: from "/tmp/.tmpX6qXqg" to "sa-solver-sns-result-ws-dispatcher"
╰─▶ Invalid cross-device link (os error 18)
~/projects uname -a 1 ✘ 18s base
Linux gauss 5.10.105-1-MANJARO #1 SMP PREEMPT Fri Mar 11 14:12:33 UTC 2022 x86_64 GNU/Linux
~/projects cargo --version ✔ base
cargo 1.62.0-nightly (dba5baf 2022-04-13)
The text was updated successfully, but these errors were encountered: