diff options
| author | Jeff Carr <[email protected]> | 2024-02-20 18:55:01 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-20 18:55:01 -0600 |
| commit | c6fcf5e5a5c4373b95b0da669c8d1c155ae45740 (patch) | |
| tree | 2e24c17d68eb5a24a95421367afefb1229d45130 | |
| parent | 8cc86a91cb6408fe1380b904c86162e931936a4f (diff) | |
closer to workingv0.20.8
| -rw-r--r-- | main.go | 3 | ||||
| -rw-r--r-- | releaseBox.go | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -89,7 +89,8 @@ func main() { me.release.openrepo.Disable() me.Disable() - log.Sleep(5) + log.Info("sleep(1)") + log.Sleep(1) // parse config file and scan for .git repos me.repos.initRepoList() diff --git a/releaseBox.go b/releaseBox.go index b7fe76e..07e67ad 100644 --- a/releaseBox.go +++ b/releaseBox.go @@ -334,11 +334,11 @@ func findNextDirty(onlyKind string) bool { continue } if repo.ReadOnly() { - log.Info("findNextDirty() skipping readonly") + // log.Info("findNextDirty() skipping readonly") continue } if repo.CheckDirty() { - log.Info("findNextDirty() skipping readonly") + log.Info("findNextDirty() skipping dirty") continue } log.Info("findNextDirty()", repo.GoPath(), goSumS) |
