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
This is because rustup-toolchain-install-master downloads into /tmp and tries to link it to user home. One cannot hard link between partitions, creating symbolic links would work however (dunno if rustc would work that way).
Looked into code more carefully and this crate uses std::fs::rename which cannot move to different mount point.
The text was updated successfully, but these errors were encountered:
Running
rustup-toolchain-install-master c131bdcaff68d35f96e954baac4340206779335f
on Linux with tmpfs mounted/tmp
gives me:This is because
rustup-toolchain-install-master
downloads into/tmp
and tries to link it to user home.One cannot hard link between partitions, creating symbolic links would work however (dunno if rustc would work that way).Looked into code more carefully and this crate uses
std::fs::rename
which cannot move to different mount point.The text was updated successfully, but these errors were encountered: