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 toolchain
rustup.exe-toolchain
Modify or query the installed toolchains
USAGE:
rustup.exe toolchain [FLAGS] [SUBCOMMAND]
FLAGS:
-h, --help Prints help information
SUBCOMMANDS:
list List installed toolchains
install Install or update a given toolchain
uninstall Uninstall a toolchain
...
$ rustup toolchain uninstall nightly
thread '<main>' panicked at 'internal error: entered unreachable code', src/rustup-cli\rustup_mode.rs:42
note: Run with `RUST_BACKTRACE=1` for a backtrace.
I would expect install/uninstall to be the main commands and remove to be the synonym. If this is the case (and I linked to the appropriate locations) I will work on submitting a PR this week.
The text was updated successfully, but these errors were encountered:
Running
rustup toolchain
displaysHowever running
rustup toolchain uninstall nightly
failsDocumentation (https://github.com/rust-lang-nursery/rustup.rs/blob/8838957d197df31f43582393084f6b43ec18db58/src/rustup-cli/rustup_mode.rs#L138) says the command is uninstall but parsing code expects
remove
(https://github.com/rust-lang-nursery/rustup.rs/blob/8838957d197df31f43582393084f6b43ec18db58/src/rustup-cli/rustup_mode.rs#L34).I would expect
install
/uninstall
to be the main commands andremove
to be the synonym. If this is the case (and I linked to the appropriate locations) I will work on submitting a PR this week.The text was updated successfully, but these errors were encountered: