Skip to content

Commit

Permalink
fix: file extension from yaml -> toml
Browse files Browse the repository at this point in the history
  • Loading branch information
TroyKomodo committed Jul 2, 2024
1 parent f9408f4 commit 345725f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foundations/src/settings/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ impl<S: Settings + serde::de::DeserializeOwned + serde::Serialize> Cli<S> {
};

if files.is_empty() {
files.push(("config.yaml".to_string(), true));
files.push(("config.toml".to_string(), true));
}

for (file, optional) in files {
Expand Down

0 comments on commit 345725f

Please sign in to comment.