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 201e71f + 6a5951b commit 690a2f5Copy full SHA for 690a2f5
src/dist/notifications.rs
@@ -176,8 +176,13 @@ impl<'a> Display for Notification<'a> {
176
),
177
SkippingNightlyMissingComponent(components) => write!(
178
f,
179
- "skipping nightly which is missing installed component '{}'",
180
- components[0].short_name_in_manifest()
+ "skipping nightly which is missing installed component{} '{}'",
+ if components.len() > 1 { "s" } else { "" },
181
+ components
182
+ .iter()
183
+ .map(|component| component.short_name_in_manifest().to_owned())
184
+ .collect::<Vec<_>>()
185
+ .join("', '")
186
187
ForcingUnavailableComponent(component) => {
188
write!(f, "Force-skipping unavailable component '{}'", component)
0 commit comments