We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
config.toml
1 parent a7c415c commit ff0d37cCopy full SHA for ff0d37c
src/bootstrap/src/core/config/config.rs
@@ -1325,7 +1325,11 @@ impl Config {
1325
// Give a hard error if `--config` or `RUST_BOOTSTRAP_CONFIG` are set to a missing path,
1326
// but not if `config.toml` hasn't been created.
1327
let mut toml = if !using_default_path || toml_path.exists() {
1328
- config.config = Some(toml_path.clone());
+ config.config = Some(if cfg!(not(feature = "bootstrap-self-test")) {
1329
+ toml_path.canonicalize().unwrap()
1330
+ } else {
1331
+ toml_path.clone()
1332
+ });
1333
get_toml(&toml_path)
1334
} else {
1335
config.config = None;
0 commit comments