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
Typing rustup prints the commends self and set twice.
Steps
Type rustup
Observe the output
rustup 1.18.0 (8603e2c56 2019-04-22)
The Rust toolchain installer
USAGE:
rustup [FLAGS] <SUBCOMMAND>
FLAGS:
-v, --verbose Enable verbose output
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
show Show the active and installed toolchains
update Update Rust toolchains and rustup
default Set the default toolchain
toolchain Modify or query the installed toolchains
target Modify a toolchain's supported targets
component Modify a toolchain's installed components
override Modify directory toolchain overrides
run Run a command with an environment configured for a given toolchain
which Display which binary will be run for a given command
doc Open the documentation for the current toolchain
man View the man page for a given command
self Modify the rustup installation
set Alter rustup settings
self Modify the rustup installation
set Alter rustup settings
completions Generate completion scripts for your shell
help Prints this message or the help of the given subcommand(s)
DISCUSSION:
rustup installs The Rust Programming Language from the official
release channels, enabling you to easily switch between stable,
beta, and nightly compilers and keep them updated. It makes
cross-compiling simpler with binary builds of the standard library
for common platforms.
If you are new to Rust consider running `rustup doc --book` to
learn Rust.
Possible Solution(s)
Notes
Output of rustup --version: rustup 1.18.0 (8603e2c 2019-04-22)
Output of rustup show:
Default host: x86_64-apple-darwin
installed toolchains
--------------------
stable-x86_64-apple-darwin
nightly-x86_64-apple-darwin (default)
installed targets for active toolchain
--------------------------------------
wasm32-unknown-unknown
x86_64-apple-darwin
active toolchain
----------------
nightly-x86_64-apple-darwin (default)
rustc 1.36.0-nightly (6d599337f 2019-04-22)
The text was updated successfully, but these errors were encountered:
`rustup self` and `rustup set` were duplicated.
`rustup telemetry` while not displayed by default should have
been removed with the rest of the telemetry support.
Fixesrust-lang#1795
Signed-off-by: Daniel Silverstone <[email protected]>
Problem
Typing
rustup
prints the commendsself
andset
twice.Steps
rustup
Possible Solution(s)
Notes
Output of
rustup --version
: rustup 1.18.0 (8603e2c 2019-04-22)Output of
rustup show
:The text was updated successfully, but these errors were encountered: