diff options
| author | forge <[email protected]> | 2025-10-06 12:17:14 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-06 12:18:25 -0500 |
| commit | 5b277e7686974d2195586d5f5b82838ee9ddb036 (patch) | |
| tree | defcb27118f58bec1889a13881f5e8ea7f3bc093 /argv.go | |
| parent | 3d2fc4fe304ba53d3b576aaa4c8e6953565cdc11 (diff) | |
working on ping pong
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -22,6 +22,7 @@ type args struct { Repos *ReposCmd `arg:"subcommand:repos" help:"the forged repos"` Patch *PatchCmd `arg:"subcommand:patches" help:"the forged patches"` Gui *EmptyCmd `arg:"subcommand:gui" help:"show gui"` + Missing *EmptyCmd `arg:"subcommand:missing" help:"list missing repos"` Port int `arg:"--port" default:"2520" help:"port to run on"` Hostname string `arg:"--hostname" help:"hostname to use"` Daemon bool `arg:"--daemon" help:"run as a daemon"` @@ -97,7 +98,7 @@ func (args) Version() string { func (a args) DoAutoComplete(pb *prep.Auto) { if pb.Cmd == "" { - pb.Autocomplete3([]string{"--bash", "repos", "gui", "patches", "--daemon"}) + pb.Autocomplete3([]string{"--bash", "repos", "gui", "patches", "--daemon", "missing"}) } else { pb.SubCommand(pb.Argv...) } |
