summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-17 01:54:26 -0500
committerJeff Carr <[email protected]>2025-10-17 01:54:26 -0500
commit110b5104785a4ee66c2e8adffdcf7fe21ba735bd (patch)
treeb26a8938cec9e12968450adbd9634fa6cda9b9bc /config.go
parent1b4d7bf168181ebfefc3a6652e6c1eb381196fc8 (diff)
say nothing when there is nothing to say
Diffstat (limited to 'config.go')
-rw-r--r--config.go2
1 files changed, 2 insertions, 0 deletions
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)
}