summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 09:25:10 -0500
committerJeff Carr <[email protected]>2025-09-09 09:25:10 -0500
commit2677e5c0cddde1f3bc0aadbc60ccf000864b66de (patch)
tree8fb707499454e6a16e01432a405bbac8575620db /argv.go
parent8edefa6dadd1f4c3c43e145cc0431654720e2953 (diff)
fixes. needs a refactorv0.22.128
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/argv.go b/argv.go
index da2e4ba..ea8bb4d 100644
--- a/argv.go
+++ b/argv.go
@@ -15,7 +15,6 @@ type args struct {
Commit *EmptyCmd `arg:"subcommand:commit" help:"'git commit' but errors out if on wrong branch"`
Show *EmptyCmd `arg:"subcommand:show" help:"show what would be done"`
Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
- Auto bool `arg:"--auto" help:"automatically attempt to make the .deb"`
Ldflags []string `arg:"--ldflags" help:"flags to pass to go build"`
Forge string `arg:"--forge" help:"use a git repo from forge"`
OutDir string `arg:"--dir" help:"write .deb file into this directory"`
@@ -23,8 +22,6 @@ type args struct {
KeepFiles bool `arg:"--keep-files" help:"keep the build files/"`
Force bool `arg:"--force" default:"false" help:"force overwrite an existing .deb file"`
Verbose bool `arg:"--verbose" help:"show more things"`
- Bash bool `arg:"--bash" help:"generate bash completion"`
- BashAuto []string `arg:"--auto-complete" help:"todo: move this to go-arg"`
}
func (args) Version() string {