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
Just found this last night while "saving myself some time" during a rustup installation. I wrote a short ruby script to install some architectures to a machine using the following script:
and found that I could no longer install any targets, either with a script or as a rustup target add $TARGET from the shell. Deleting the ~/.rustup/tmp directory to fix the issue didn't work. I ended up just deleting the .rustup directory and reinstalling targets synchronously.
Either a lock to prevent multiple occurrences of rustup operating within the same .rustup directory or a check for running rustup processes, each with and a subsequent fail wirg an appropriate error message would fix the issue.
The text was updated successfully, but these errors were encountered:
Just found this last night while "saving myself some time" during a rustup installation. I wrote a short ruby script to install some architectures to a machine using the following script:
After spinning off a process to download each architecture and promptly failing I went to install each architecture synchronously with:
and found that I could no longer install any targets, either with a script or as a
rustup target add $TARGET
from the shell. Deleting the~/.rustup/tmp
directory to fix the issue didn't work. I ended up just deleting the.rustup
directory and reinstalling targets synchronously.Either a lock to prevent multiple occurrences of rustup operating within the same
.rustup
directory or a check for running rustup processes, each with and a subsequent fail wirg an appropriate error message would fix the issue.The text was updated successfully, but these errors were encountered: