From 1d49948615318c317526012ee806d63b23f89f50 Mon Sep 17 00:00:00 2001 From: Bennett Wetters Date: Sat, 25 Jul 2026 21:13:23 +0200 Subject: [PATCH] fix(config): Remove redundant space from log message --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 444fd45..b57d615 100644 --- a/config/config.go +++ b/config/config.go @@ -59,7 +59,7 @@ func getConfigPaths() (paths pathsT) { // If paths is still empty we are missing something if len(paths) == 0 { - log.Fatalln("Error: Neither env: ", envConfigPath, "nor cli flag was specified, unable to start without config.") + log.Fatalln("Error: Neither env:", envConfigPath, "nor cli flag was specified, unable to start without config.") } return }