diff options
| author | Jeff Carr <[email protected]> | 2025-10-14 04:40:11 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-14 04:50:56 -0500 |
| commit | 7905bfcde0894a63b9433b3c777e2b255591138f (patch) | |
| tree | 9814aab6faa2aac0150ab82f1d9f8d528b0b4738 /argv.go | |
| parent | f2a3ac86043387725cb932c877bc76770812b11f (diff) | |
housecleaning
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -17,18 +17,18 @@ import ( var argv args type args struct { - List *EmptyCmd `arg:"subcommand:list" help:"show the packages"` - Walk *WalkCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"` - Update *EmptyCmd `arg:"subcommand:oldway" help:"the old code to update the apt repo"` - Verify *EmptyCmd `arg:"subcommand:verify" help:"verify the pb is accurate and doesn't have errors"` - Incoming *IncomingCmd `arg:"subcommand:incoming" help:"handle the incoming directory"` - MakeDists *EmptyCmd `arg:"subcommand:makedists" help:"make debian mirrors/dists files for 'apt update'"` - Everything *EmptyCmd `arg:"subcommand:everything" help:"do the whole thing needed. nothing more. just everything."` - Newest *EmptyCmd `arg:"subcommand:newest" help:"make a list of the newest .deb packages"` - 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"` + List *EmptyCmd `arg:"subcommand:list" help:"show the packages"` + Walk *WalkCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"` + Verify *EmptyCmd `arg:"subcommand:verify" help:"verify the pb is accurate and doesn't have errors"` + Incoming *IncomingCmd `arg:"subcommand:incoming" help:"handle the incoming directory"` + MakeDists *EmptyCmd `arg:"subcommand:makedists" help:"make debian mirrors/dists files for 'apt update'"` + 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."` + Newest *EmptyCmd `arg:"subcommand:newest" help:"make a list of the newest .deb packages"` + 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 { |
