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
Rustup should only remove the tmp/<toolchain> dir that it downloaded
When rustup-toolchain-install-master (RTIM) and rustup update run concurrently, rustup often finishs
installation first (probably because of nightly toolchain is cache by cloudfont, I don't know), so
the tmp is removed by rustup. This cause RTIM fails to install the master toolchain.
Describe the solution you'd like
I don't have a clear suggestion. But I think rustup could keep the tmp dir, and only remove
the toolchain that it is going to install.
Notes
The text was updated successfully, but these errors were encountered:
At this time rustup does not support being run in parallel for any activity which could use or alter toolchains. I believe @rbtcollins is considering locking approaches to ameliorate this kind of issue.
The post full rustup update temp dir cleanup is explicitly there as a way to resolve issues with partially downloaded content which is not longer referenceable (e.g. cancelled nightly updates)
Rustup should only remove the
tmp/<toolchain>
dir that it downloadedWhen rustup-toolchain-install-master (RTIM) and
rustup update
run concurrently, rustup often finishsinstallation first (probably because of nightly toolchain is cache by cloudfont, I don't know), so
the tmp is removed by rustup. This cause RTIM fails to install the master toolchain.
Describe the solution you'd like
I don't have a clear suggestion. But I think rustup could keep the tmp dir, and only remove
the toolchain that it is going to install.
Notes
The text was updated successfully, but these errors were encountered: