From 895de86f1e29ba5b318cfdbe644dda103cab4820 Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Sun, 3 Sep 2023 19:00:17 +0100 Subject: [PATCH] fix(core/config): use uppercase filename --- crates/core/config/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core/config/src/lib.rs b/crates/core/config/src/lib.rs index 30622370..af375b6f 100644 --- a/crates/core/config/src/lib.rs +++ b/crates/core/config/src/lib.rs @@ -13,8 +13,8 @@ static CONFIG_BUILDER: Lazy> = Lazy::new(|| { FileFormat::Toml, )); - if std::path::Path::new("revolt.toml").exists() { - builder = builder.add_source(File::new("revolt.toml", FileFormat::Toml)); + if std::path::Path::new("Revolt.toml").exists() { + builder = builder.add_source(File::new("Revolt.toml", FileFormat::Toml)); } builder.build().unwrap()