File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/bootstrap/src/core/config Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ path = [
22
22
" Cargo.lock" ,
23
23
" Cargo.toml" ,
24
24
" CODE_OF_CONDUCT.md" ,
25
- " config .example.toml" ,
25
+ " bootstrap .example.toml" ,
26
26
" configure" ,
27
27
" CONTRIBUTING.md" ,
28
28
" COPYRIGHT" ,
Original file line number Diff line number Diff line change @@ -1315,7 +1315,7 @@ impl Config {
1315
1315
let mut toml_path = toml_path. unwrap_or_else ( || PathBuf :: from ( "bootstrap.toml" ) ) ;
1316
1316
if using_default_path && !toml_path. exists ( ) {
1317
1317
toml_path = PathBuf :: from ( "config.toml" ) ;
1318
- if using_default_path && !toml_path. exists ( ) {
1318
+ if !toml_path. exists ( ) {
1319
1319
toml_path = config. src . join ( PathBuf :: from ( "bootstrap.toml" ) ) ;
1320
1320
if !toml_path. exists ( ) {
1321
1321
toml_path = config. src . join ( PathBuf :: from ( "config.toml" ) ) ;
You can’t perform that action at this time.
0 commit comments