diff options
| author | Jeff Carr <[email protected]> | 2025-10-17 01:54:26 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-17 01:54:26 -0500 |
| commit | 110b5104785a4ee66c2e8adffdcf7fe21ba735bd (patch) | |
| tree | b26a8938cec9e12968450adbd9634fa6cda9b9bc /config.go | |
| parent | 1b4d7bf168181ebfefc3a6652e6c1eb381196fc8 (diff) | |
say nothing when there is nothing to say
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) } |
