diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 02:20:06 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 02:20:06 -0500 |
| commit | 98467dec72f0a894b7a2fef319d73d3320d94d0f (patch) | |
| tree | 2bbd2f2fb9d50b413e716ca7030304f950c65194 /doDirty.go | |
| parent | dbde2f51b8acb4043203b5592531c6715896c800 (diff) | |
using new config package
Diffstat (limited to 'doDirty.go')
| -rw-r--r-- | doDirty.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,7 +22,7 @@ func (f *Forge) CheckDirtyQuiet() { for _, s := range stats { if s.Err == nil { } else { - // log.Info(i, s.Err) + log.Info("forge SetConfigSave(true)") f.SetConfigSave(true) changed = true } @@ -73,6 +73,7 @@ func doCheckDirty(repo *gitpb.Repo) error { // nothing changed } else { log.Info("Repo changed to clean", repo.FullPath) + return log.Errorf("%s repo changed to clean", repo.FullPath) // f.SetConfigSave(true) } } else { |
