We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce0932 commit 151cae0Copy full SHA for 151cae0
REUSE.toml
@@ -22,7 +22,7 @@ path = [
22
"Cargo.lock",
23
"Cargo.toml",
24
"CODE_OF_CONDUCT.md",
25
- "config.example.toml",
+ "bootstrap.example.toml",
26
"configure",
27
"CONTRIBUTING.md",
28
"COPYRIGHT",
src/bootstrap/src/core/config/config.rs
@@ -1315,7 +1315,7 @@ impl Config {
1315
let mut toml_path = toml_path.unwrap_or_else(|| PathBuf::from("bootstrap.toml"));
1316
if using_default_path && !toml_path.exists() {
1317
toml_path = PathBuf::from("config.toml");
1318
- if using_default_path && !toml_path.exists() {
+ if !toml_path.exists() {
1319
toml_path = config.src.join(PathBuf::from("bootstrap.toml"));
1320
if !toml_path.exists() {
1321
toml_path = config.src.join(PathBuf::from("config.toml"));
0 commit comments