forked from slonk/bingus-blog
fix config env var
This commit is contained in:
parent
514d4e033d
commit
e44f4e48b9
1 changed files with 5 additions and 2 deletions
|
@ -139,8 +139,11 @@ impl Default for CacheConfig {
|
|||
}
|
||||
|
||||
pub async fn load() -> Result<Config> {
|
||||
let config_file = env::var(format!("{}_CONFIG", env!("CARGO_BIN_NAME")))
|
||||
.unwrap_or(String::from("config.toml"));
|
||||
let config_file = env::var(format!(
|
||||
"{}_CONFIG",
|
||||
env!("CARGO_BIN_NAME").to_uppercase().replace("-", "_")
|
||||
))
|
||||
.unwrap_or(String::from("config.toml"));
|
||||
match tokio::fs::OpenOptions::new()
|
||||
.read(true)
|
||||
.open(&config_file)
|
||||
|
|
Loading…
Reference in a new issue