Skip to content

Commit

Permalink
fix: ignore missing dotenv file
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Feb 21, 2022
1 parent 8019618 commit 30528f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doppelgaenger-input/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ impl Processor {

#[tokio::main]
async fn main() -> anyhow::Result<()> {
dotenv::dotenv()?;
dotenv::dotenv().ok();
env_logger::init();

let config: ApplicationConfig = Config::builder()
Expand Down

0 comments on commit 30528f7

Please sign in to comment.