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
Right now a successful rustup target remove doesn't actually print anything, whereas most other commands print out something like "successfully did blah".
The text was updated successfully, but these errors were encountered:
brian@ip-10-145-43-250:/mnt2/dev⟫ rustup target add i686-unknown-linux-gnu
info: downloading component 'rust-std' for 'i686-unknown-linux-gnu'
info: installing component 'rust-std' for 'i686-unknown-linux-gnu'
Seems like an appropriate message is
info: removing component 'rust-std' for 'i686-unknown-linux-gnu'
Neither indicates that the command was finally installed or removed, but saying "removing" is at least consistent with the existing logs, and it prints something.
Add a message when removing a component
Fixes#306.
The message is (for example)
```
info: removing component 'rust-std' for 'x86_64-unknown-linux-musl'
```
Right now a successful
rustup target remove
doesn't actually print anything, whereas most other commands print out something like "successfully did blah".The text was updated successfully, but these errors were encountered: