From ba23edc6d13531916d1bf42637b8da4a34ae2075 Mon Sep 17 00:00:00 2001 From: slonkazoid Date: Wed, 29 Jan 2025 17:34:22 +0300 Subject: [PATCH] oops! wrong casing --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 7978164..302b3a1 100644 --- a/src/config.rs +++ b/src/config.rs @@ -265,7 +265,7 @@ impl Default for BlagConfig { fn config_path() -> Cow<'static, str> { env::var(concat!( - convert_ascii_case!(upper_camel, env!("CARGO_BIN_NAME")), + convert_ascii_case!(shouty_snake, env!("CARGO_BIN_NAME")), "_CONFIG" )) .map(Into::into)