From 110b5104785a4ee66c2e8adffdcf7fe21ba735bd Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 17 Oct 2025 01:54:26 -0500 Subject: say nothing when there is nothing to say --- config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.go b/config.go index 18dfdf7..6837f47 100644 --- a/config.go +++ b/config.go @@ -128,6 +128,8 @@ func LoadStdConfig() (*ForgeConfigs, error) { log.Info("files were blank err=", err) } else if errors.Is(err, config.ErrMarshal) { log.Info("files existed and could not be Marshalled() err=", err) + } else if err == nil { + // do nothing. probably shoulda started with this } else { log.Info("some other bad problem err=", err) } -- cgit v1.2.3