summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-20 18:55:01 -0600
committerJeff Carr <[email protected]>2024-02-20 18:55:01 -0600
commitc6fcf5e5a5c4373b95b0da669c8d1c155ae45740 (patch)
tree2e24c17d68eb5a24a95421367afefb1229d45130
parent8cc86a91cb6408fe1380b904c86162e931936a4f (diff)
closer to workingv0.20.8
-rw-r--r--main.go3
-rw-r--r--releaseBox.go4
2 files changed, 4 insertions, 3 deletions
diff --git a/main.go b/main.go
index 675127f..24f57c0 100644
--- a/main.go
+++ b/main.go
@@ -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)