From 09bdf23764d39d0b3c0b532c5adb980e0a32b523 Mon Sep 17 00:00:00 2001 From: dotandev Date: Wed, 28 Jan 2026 23:09:34 +0100 Subject: [PATCH] Improve missing config error message Fixes #4 --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 2337719..5d80c51 100644 --- a/src/config.rs +++ b/src/config.rs @@ -73,7 +73,7 @@ impl Config { } } - anyhow::bail!("No config file found. Looking for: {}.\n\nTip: You can create a new configuration file by running 'envcheck init' (coming soon!) or by creating a '.envcheck.yaml' file manually.", config_names.join(", ")) + anyhow::bail!("No config file found. Looking for: {}.\n\nTip: You can create a new configuration file by running 'envcheck init' or by creating a '.envcheck.yaml' file manually.", config_names.join(", ")) } }