summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-09 20:00:39 -0500
committerJeff Carr <[email protected]>2025-10-09 20:06:39 -0500
commit5cc996fb000749369a339b850c1f2f2218892537 (patch)
tree4e6818c93fd5d6257d7fdfae0d993acdaadef736 /argv.go
parent6910b06ff957337af42f89c1a19072cb75c0ae74 (diff)
nearing ability to create dists/v0.0.16
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/argv.go b/argv.go
index 5f99c69..fc12907 100644
--- a/argv.go
+++ b/argv.go
@@ -17,13 +17,14 @@ import (
var argv args
type args struct {
- List *EmptyCmd `arg:"subcommand:list" help:"show the packages"`
- Walk *EmptyCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"`
- Update *EmptyCmd `arg:"subcommand:update" help:"update the apt repo"`
- Incoming *EmptyCmd `arg:"subcommand:incoming" help:"handle the incoming directory"`
- 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"`
+ List *EmptyCmd `arg:"subcommand:list" help:"show the packages"`
+ Walk *EmptyCmd `arg:"subcommand:walk" help:"walk the filesystem for new .deb files"`
+ Update *EmptyCmd `arg:"subcommand:update" help:"update the apt repo"`
+ Incoming *EmptyCmd `arg:"subcommand:incoming" help:"handle the incoming directory"`
+ MakeDists *EmptyCmd `arg:"subcommand:makedists" help:"make debian mirrors/dists files for 'apt update'"`
+ 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"`
}
type EmptyCmd struct {