We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c3eb9b + 3ea8eac commit 6ff4818Copy full SHA for 6ff4818
src/rustup.rs
@@ -28,7 +28,7 @@ pub fn installed_toolchains(verbose: bool) -> Result<Vec<String>> {
28
.args(&["toolchain", "list"])
29
.run_and_get_stdout(verbose)?;
30
31
- Ok(out.lines().map(|l| l.replace(" (default)", "").trim().to_owned()).collect())
+ Ok(out.lines().map(|l| l.replace(" (default)", "").replace(" (override)", "").trim().to_owned()).collect())
32
}
33
34
pub fn available_targets(toolchain: &str, verbose: bool) -> Result<AvailableTargets> {
0 commit comments