We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--skip
--exclude
1 parent ae3703c commit 0c21a28Copy full SHA for 0c21a28
src/bootstrap/src/core/config/config.rs
@@ -1314,7 +1314,13 @@ impl Config {
1314
1315
// Set flags.
1316
config.paths = std::mem::take(&mut flags.paths);
1317
- config.skip = flags.skip.into_iter().chain(flags.exclude).collect();
+ config.skip = flags
1318
+ .skip
1319
+ .into_iter()
1320
+ .chain(flags.exclude)
1321
+ .map(|p| t!(config.src.join(p).canonicalize()))
1322
+ .collect();
1323
+
1324
config.include_default_paths = flags.include_default_paths;
1325
config.rustc_error_format = flags.rustc_error_format;
1326
config.json_output = flags.json_output;
0 commit comments