From f7f02647de5f52c23202e5c2c67954bfa5af1007 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 15 Oct 2025 05:34:36 -0500 Subject: add Recommends --- argv.go | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'argv.go') diff --git a/argv.go b/argv.go index 62017fd..4cc8798 100644 --- a/argv.go +++ b/argv.go @@ -13,17 +13,18 @@ import ( */ type args struct { - Show *EmptyCmd `arg:"subcommand:show" help:"show what would be done"` - Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"` - Dump *EmptyCmd `arg:"subcommand:dump" help:"dump out the future control file"` - Ldflags []string `arg:"--ldflags" help:"flags to pass to go build"` - OutDir string `arg:"--dir" help:"write .deb file into this directory"` - Namespace string `arg:"--namespace" help:"the namespace of the repo"` - Arch string `arg:"--arch" help:"what arch"` - KeepFiles bool `arg:"--keep-files" help:"keep the build files/"` - Release bool `arg:"--release" help:"build version from the @latest git tag"` - Force bool `arg:"--force" default:"false" help:"force overwrite an existing .deb file"` - Verbose bool `arg:"--verbose" help:"show more things"` + Show *EmptyCmd `arg:"subcommand:show" help:"show what would be done"` + Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"` + Dump *EmptyCmd `arg:"subcommand:dump" help:"dump out the future control file"` + Ldflags []string `arg:"--ldflags" help:"flags to pass to go build"` + OutDir string `arg:"--dir" help:"write .deb file into this directory"` + Namespace string `arg:"--namespace" help:"the namespace of the repo"` + Arch string `arg:"--arch" help:"what arch"` + BuildVersion string `arg:"--buildversion" help:"what arch"` + KeepFiles bool `arg:"--keep-files" help:"keep the build files/"` + Release bool `arg:"--release" help:"build version from the @latest git tag"` + Force bool `arg:"--force" default:"false" help:"force overwrite an existing .deb file"` + Verbose bool `arg:"--verbose" help:"show more things"` } func (args) Examples() string { @@ -61,7 +62,7 @@ func (args) Buildtime() (string, string) { func (a args) DoAutoComplete(pb *prep.Auto) { if pb.Cmd == "" { - pb.Autocomplete3([]string{"dump", "gui", "show", "--version", "--keep-files"}) + pb.Autocomplete3([]string{"dump", "gui", "show", "--version", "--keep-files", "--buildversion"}) } else { pb.SubCommand(pb.Goargs...) } -- cgit v1.2.3