diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 11:27:11 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 11:27:11 -0500 |
| commit | ae329b7b65a89c3f271b2f108fb54940033c1012 (patch) | |
| tree | 32b33d0eb1ddf21a76eb1662cb0d53bf3a07adc8 /argv.go | |
| parent | 17565a9f7ec9023856f7ce977b238c9eda91c18a (diff) | |
repomap handling
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -50,8 +50,10 @@ type DebianCmd struct { } type CloneCmd struct { - DryRun bool `arg:"--dry-run" help:"show what has not yet come to pass"` - Verbose bool `arg:"--verbose" help:"be loud about it"` + Check *EmptyCmd `arg:"subcommand:check" help:"check urls against the repomap"` + Repomap *EmptyCmd `arg:"subcommand:repomap" help:"make updated repomap"` + DryRun bool `arg:"--dry-run" help:"show what has not yet come to pass"` + Verbose bool `arg:"--verbose" help:"be loud about it"` } type UpgradeCmd struct { |
