diff options
| author | Jeff Carr <[email protected]> | 2025-10-26 22:41:03 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-26 22:41:03 -0500 | 
| commit | 7c16b0dfdab59df0e18e90fae0b30177695a3edb (patch) | |
| tree | 95a78d45b2a184914889ccf27ebb824deeb72bb4 | |
| parent | 3c25d4a6aa196b9b685d6c27dfaf6a4998b24598 (diff) | |
lintv0.7.116
| -rw-r--r-- | argv.go | 9 | 
1 files changed, 4 insertions, 5 deletions
@@ -3,12 +3,11 @@ package main  var argv args  type args struct { -	Repo         string `arg:"--repo"              help:"repo namespace"` -	AutoWork     bool   `arg:"--work"       default:"false"   help:"recreate the go.work file"` +	Repo         string `arg:"--repo"                         help:"repo namespace"` +	AutoWork     bool   `arg:"--work"                         help:"recreate the go.work file"`  	DryRun       bool   `arg:"--dry-run"                      help:"show what would be run"` -	NonRecursive bool   `arg:"--non-recursive"        help:"recursively clone all dependencies"` +	NonRecursive bool   `arg:"--non-recursive"                help:"recursively clone all dependencies"`  	Build        bool   `arg:"--build"                        help:"try to build it after clone"`  	Install      bool   `arg:"--install"                      help:"try to install it after clone"` -	Ignore       bool   `arg:"--ignore"     default:"false"   help:"ignore weird clone errors from non-standard repos"` -	// Fetch     bool   `arg:"--git-fetch"      default:"false" help:"run 'git fetch' on all your repos"` +	Ignore       bool   `arg:"--ignore"                       help:"ignore weird clone errors from non-standard repos"`  }  | 
