We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
config.toml
1 parent d42e582 commit 79a925fCopy full SHA for 79a925f
src/bootstrap/src/core/config/config.rs
@@ -1325,7 +1325,7 @@ 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(toml_path.canonicalize().unwrap());
1329
get_toml(&toml_path)
1330
} else {
1331
config.config = None;
0 commit comments