diff options
| -rw-r--r-- | argv.go | 1 | ||||
| -rw-r--r-- | main.go | 14 |
2 files changed, 11 insertions, 4 deletions
@@ -49,6 +49,7 @@ type CleanCmd struct { GitReset *EmptyCmd `arg:"subcommand:git-reset" help:"git reset --hard"` User *EmptyCmd `arg:"subcommand:user" help:"clean the user branches"` Verify *VerifyCmd `arg:"subcommand:verify" help:"verify branches"` + Repo string `arg:"--repo" help:"which repo to look at"` } type VerifyCmd struct { @@ -79,6 +79,10 @@ func main() { } if argv.Clean != nil { + if argv.Clean.Repo != "" { + log.Info("only looking at repo:", argv.Clean.Repo) + okExit("") + } if argv.Clean.Examine != nil { if err := doExamine(); err != nil { badExit(err) @@ -159,11 +163,13 @@ func main() { log.Info(i, line) } } - if argv.Patch.Show != nil { - findReposWithPatches() - me.forge.PrintHumanTable(me.found) - + findReposWithPatches() + if me.found.Len() == 0 { + log.Info("you have no patches in your user branches") + okExit("patch list empty") } + me.forge.PrintHumanTable(me.found) + okExit("patch list") } |
