We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4790a43 commit 4795399Copy full SHA for 4795399
src/bootstrap/src/core/build_steps/test.rs
@@ -2442,7 +2442,9 @@ impl Step for ErrorIndex {
2442
const ONLY_HOSTS: bool = true;
2443
2444
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2445
- run.path("src/tools/error_index_generator")
+ // Also add `error-index` here since that is what appears in the error message
2446
+ // when this fails.
2447
+ run.path("src/tools/error_index_generator").alias("error-index")
2448
}
2449
2450
fn make_run(run: RunConfig<'_>) {
0 commit comments