File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ impl AppContext {
191191 & mut self ,
192192 config_path : Option < PathBuf > ,
193193 ) -> anyhow:: Result < BuildConfig > {
194- let content = prepare_config :: < BuildConfig > ( self , config_path, ".config .toml" ) . await ?;
194+ let content = prepare_config :: < BuildConfig > ( self , config_path, ".build .toml" ) . await ?;
195195
196196 let config: BuildConfig = toml:: from_str ( & content) ?;
197197 println ! ( "Build configuration: {:?}" , config) ;
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ enum SubCommands {
3131
3232#[ derive( Args , Debug ) ]
3333struct RunArgs {
34- /// Path to the build configuration file, default to `.config.toml`
34+ /// Path to the build configuration file
3535 #[ arg( short, long) ]
3636 config : Option < PathBuf > ,
3737 #[ command( subcommand) ]
You can’t perform that action at this time.
0 commit comments