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
When you use rustup update to update a channel, all components must be downloaded successfully in order for the update to complete. If any component failed to download, the whole channel will fail as well. Therefore, on an unstable network, it is basically impossible to update.
A better option is to save the partially downloaded data. This way even if the download was interrupted, the user could still resume.
$ rustup -V
rustup 0.6.3 (a0e2132 2016-08-28)
The text was updated successfully, but these errors were encountered:
@kennytm I think this should be fixed by #958 & #1020 which move download staging to a persistent directory and support resumption. Does that more or less fit the bill?
When you use
rustup update
to update a channel, all components must be downloaded successfully in order for the update to complete. If any component failed to download, the whole channel will fail as well. Therefore, on an unstable network, it is basically impossible to update.A better option is to save the partially downloaded data. This way even if the download was interrupted, the user could still resume.
The text was updated successfully, but these errors were encountered: