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 = [
2222 " Cargo.lock" ,
2323 " Cargo.toml" ,
2424 " CODE_OF_CONDUCT.md" ,
25- " config .example.toml" ,
25+ " bootstrap .example.toml" ,
2626 " configure" ,
2727 " CONTRIBUTING.md" ,
2828 " COPYRIGHT" ,
Original file line number Diff line number Diff line change @@ -1315,7 +1315,7 @@ impl Config {
13151315 let mut toml_path = toml_path. unwrap_or_else ( || PathBuf :: from ( "bootstrap.toml" ) ) ;
13161316 if using_default_path && !toml_path. exists ( ) {
13171317 toml_path = PathBuf :: from ( "config.toml" ) ;
1318- if using_default_path && !toml_path. exists ( ) {
1318+ if !toml_path. exists ( ) {
13191319 toml_path = config. src . join ( PathBuf :: from ( "bootstrap.toml" ) ) ;
13201320 if !toml_path. exists ( ) {
13211321 toml_path = config. src . join ( PathBuf :: from ( "config.toml" ) ) ;
You can’t perform that action at this time.
0 commit comments