summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-08 10:10:14 -0600
committerJeff Carr <[email protected]>2025-01-08 10:10:14 -0600
commitae8fd94a2c33f1bcfa56e009c4b88d82f0712c9d (patch)
tree40564e11416acc09442d68e9f7e8ddc1038c38bc /main.go
parente27e1716d77f4d4f09d89285707895724e7a3838 (diff)
output cleanupsv0.22.37
Diffstat (limited to 'main.go')
-rw-r--r--main.go10
1 files changed, 4 insertions, 6 deletions
diff --git a/main.go b/main.go
index 446e4b9..76e4a0a 100644
--- a/main.go
+++ b/main.go
@@ -94,8 +94,6 @@ func main() {
okExit("")
}
- log.Info("found", me.found.Len(), "repos. found", len(me.foundPaths), "paths from .config/forge")
-
if argv.Dirty != nil {
findAll() // select all the repos
doCheckDirtyAndConfigSave()
@@ -136,25 +134,25 @@ func main() {
if argv.GitReset != nil {
findAll() // select all the repos
doGitReset()
- okExit("patches")
+ okExit("reset")
}
if argv.List != nil {
argv.List.findRepos()
// print out the repos
me.forge.PrintHumanTable(me.found)
- okExit("patches")
+ okExit("")
}
if argv.Patch != nil {
if argv.Patch.Show != nil {
sendDevelDiff("fixme")
// sendMasterDiff()
- okExit("patches")
+ okExit("")
}
if argv.Patch.List != nil {
listPatches()
- okExit("patches")
+ okExit("patch list")
}
}