summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/argv.go b/argv.go
index 7880247..cb23077 100644
--- a/argv.go
+++ b/argv.go
@@ -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"`
}