summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 03:55:00 -0500
committerJeff Carr <[email protected]>2025-10-05 03:55:00 -0500
commit1ead07061c0826a3f220e7632f3be2b57b3c2506 (patch)
tree613421c17f91b0376eaa5eefa6b13c942629bb6b /main.go
parent8f71f42d4668921d85a80b2bb6a71cb5e4eee1d9 (diff)
various cleanups
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index ed371bb..e6ca8eb 100644
--- a/main.go
+++ b/main.go
@@ -101,8 +101,8 @@ func main() {
if argv.Mode != nil {
if argv.Mode.Normal != nil {
- if me.forge.Config.Mode == forgepb.ForgeMode_NORMAL {
- log.Info("you are already in the normal state")
+ if doNormal() {
+ log.Infof("all your %d repos are in a normal stete for development\n", me.forge.Repos.Len())
okExit("")
}
start := time.Now()