diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 04:32:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 04:32:00 -0500 |
| commit | b339658a81d79a4cfb00797d196d3aace08d2513 (patch) | |
| tree | 04144d3a880afca9de171b1919940f8cf01fb820 /argv.go | |
| parent | 1fe9716603d5aebc42e63228d9ade30e34ef085a (diff) | |
send more logic into go-args
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ type args struct { Add *EmptyCmd `arg:"subcommand:add" help:"Scan directores for git repos"` Fixer *FixCmd `arg:"subcommand:fixer" help:"send in the fixer"` Verify *VerifyCmd `arg:"subcommand:verify" help:"populate stats"` - Whatchanged *EmptyCmd `arg:"subcommand:whatchanged" help:"being deprecated (perhaps?). this is just for finger memory."` + Whatchanged *EmptyCmd `arg:"subcommand:whatchanged" ` Rebuild *RebuildCmd `arg:"subcommand:rebuild" help:"download all the forge sources and rebuild forge"` Generate *GenerateCmd `arg:"subcommand:generate" help:"helps run autogenpb in repos with .proto files"` All bool `arg:"--all" help:"whatever you are doing, do it all over"` @@ -144,7 +144,7 @@ type TagCmd struct { } type MergeCmd struct { - All bool `arg:"--all" help:"merge all"` + All bool `arg:"--all" help:"merge all user branches to devel and master"` Devel *EmptyCmd `arg:"subcommand:devel" help:"merge user to devel"` Master *EmptyCmd `arg:"subcommand:master" help:"merge devel to master"` Publish *EmptyCmd `arg:"subcommand:publish" help:"increment versions and publish master branch"` |
