Open
Description
Currently, if you have beta
installed via rustup, x.py will download it again when building for the first time. It would be great to avoid this needless download. It would also have the benefit that x.py clean
wouldn't require redownloading things from the internet.
Possible implementation: try both rustc --version
and rustc +beta --version
; use the first that is the right version and download beta otherwise. The version should be an exact match (beta 1.xx.0
, not just beta
or 1.xx.0
).