summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-14 09:42:51 -0500
committerJeff Carr <[email protected]>2025-10-14 10:49:00 -0500
commitcd9cca720e44c9f3b690b6441d3e0b01b9963d59 (patch)
tree0977439467f27107af5dcb89db23a47266342b9d /argv.go
parentaa08cfcbe50a94898728ee53a685abfbd223a7e4 (diff)
more housecleaning
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 966356a..e7078a1 100644
--- a/argv.go
+++ b/argv.go
@@ -20,7 +20,6 @@ type args struct {
Incoming *IncomingCmd `arg:"subcommand:incoming" help:"handle the incoming directory"`
List *EmptyCmd `arg:"subcommand:list" help:"show the packages"`
Verify *EmptyCmd `arg:"subcommand:verify" help:"verify the pb is accurate and doesn't have errors"`
- MakeDists *EmptyCmd `arg:"subcommand:makedists" help:"make debian mirrors/dists files for 'apt update'"`
Newest *EmptyCmd `arg:"subcommand:newest" help:"make a list of the newest .deb packages"`
SignRelease *EmptyCmd `arg:"subcommand:release" help:"make & GPG sign the Release files"`
Everything *EmptyCmd `arg:"subcommand:everything" help:"do the whole thing needed. nothing more. just everything."`
@@ -28,7 +27,6 @@ type args struct {
DryRun bool `arg:"--dry-run" help:"only show what would be packaged"`
Verbose bool `arg:"--verbose" help:"be loud about it"`
Force bool `arg:"--force" help:"rebuild everything"`
- Create bool `arg:"--create" help:"create a new .pb file"`
}
type EmptyCmd struct {