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.
1 parent dbb66ad commit d4ae176Copy full SHA for d4ae176
tests/suite/cli_v2.rs
@@ -1067,7 +1067,11 @@ fn update_unavailable_force() {
1067
config.expect_err(
1068
&["rustup", "update", "nightly"],
1069
for_host!(
1070
- "component 'rls' for target '{0}' is unavailable for download for channel 'nightly'"
+ r"error: component 'rls' for target '{0}' is unavailable for download for channel 'nightly'
1071
+Sometimes not all components are available in any given nightly. If you are trying to update an existing toolchain and no longer need this component,
1072
+you might want to remove it first with:
1073
+
1074
+ rustup component remove --toolchain nightly --target {0} rls"
1075
),
1076
);
1077
config.expect_ok(&["rustup", "update", "nightly", "--force"]);
0 commit comments