diff options
| -rw-r--r-- | argv.go | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -7,12 +7,11 @@ package main */ type args struct { - Repo string `arg:"positional" help:"go import path"` - // Work bool `arg:"--work" help:"make a work directory"` - NoWork bool `arg:"--no-work" help:"do not make or modify the go.work file"` - GoSrc bool `arg:"--go-src" help:"only work in ~/go/src"` - DryRun bool `arg:"--dry-run" help:"show what would be run"` - Recursive bool `arg:"--recursive" help:"resursively clone all dependencies"` + Repo string `arg:"positional" help:"go import path"` + NoWork bool `arg:"--no-work" default:"true" help:"do not make or modify the go.work file"` + GoSrc bool `arg:"--go-src" default:"true" help:"only work in ~/go/src"` + DryRun bool `arg:"--dry-run" help:"show what would be run"` + Recursive bool `arg:"--recursive" default:"false" help:"resursively clone all dependencies"` } func (a args) Description() string { |
