diff options
| author | Jeff Carr <[email protected]> | 2024-12-15 08:31:42 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-15 08:31:42 -0600 |
| commit | 7cade75da86c346cd39ee37e85c066347cdaf274 (patch) | |
| tree | 060d78d8465011293e0a574d512e35a7e32173b0 /argv.go | |
| parent | 5f1f19d9ca4bec7b285256845d04ac76222cda13 (diff) | |
all sorts of updates. it didn't work before!
Diffstat (limited to 'argv.go')
| -rw-r--r-- | argv.go | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -13,10 +13,9 @@ type args struct { AutoWork bool `arg:"--work" default:"false" help:"recreate the go.work file"` DryRun bool `arg:"--dry-run" help:"show what would be run"` Recursive bool `arg:"--recursive" default:"false" help:"resursively clone all dependencies"` - Pull bool `arg:"--git-pull" default:"false" help:"run 'git pull' on all your repos"` - Build bool `arg:"--build" default:"true" help:"also try to build it"` - Install bool `arg:"--install" default:"false" help:"try to install every binary package"` - RedoGoMod bool `arg:"--go-reset" default:"false" help:"remake all the go.sum and go.mod files"` + Pull bool `arg:"--git-pull" default:"false" help:"run 'git pull'"` + Build bool `arg:"--build" default:"true" help:"try to build it after clone"` + Install bool `arg:"--install" default:"false" help:"try to install it after clone"` // Fetch bool `arg:"--git-fetch" default:"false" help:"run 'git fetch' on all your repos"` } |
