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 01dbfda commit be3cd46Copy full SHA for be3cd46
src/bootstrap/builder.rs
@@ -218,6 +218,12 @@ impl StepDescription {
218
}
219
} else {
220
for path in paths {
221
+ // strip CurDir prefix if present
222
+ let path = match path.strip_prefix(".") {
223
+ Ok(p) => p,
224
+ Err(_) => path,
225
+ };
226
+
227
let mut attempted_run = false;
228
for (desc, should_run) in v.iter().zip(&should_runs) {
229
if let Some(suite) = should_run.is_suite_path(path) {
0 commit comments