Skip to content

Commit ff0d37c

Browse files
committed
use absolute path for config.toml
Signed-off-by: onur-ozkan <[email protected]>
1 parent a7c415c commit ff0d37c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bootstrap/src/core/config/config.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1325,7 +1325,11 @@ impl Config {
13251325
// Give a hard error if `--config` or `RUST_BOOTSTRAP_CONFIG` are set to a missing path,
13261326
// but not if `config.toml` hasn't been created.
13271327
let mut toml = if !using_default_path || toml_path.exists() {
1328-
config.config = Some(toml_path.clone());
1328+
config.config = Some(if cfg!(not(feature = "bootstrap-self-test")) {
1329+
toml_path.canonicalize().unwrap()
1330+
} else {
1331+
toml_path.clone()
1332+
});
13291333
get_toml(&toml_path)
13301334
} else {
13311335
config.config = None;

0 commit comments

Comments
 (0)