diff options
| author | Jeff Carr <[email protected]> | 2025-10-19 07:34:23 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-19 07:34:23 -0500 |
| commit | f945380a98f0b52a4b5d1614295700a92fdd5f2b (patch) | |
| tree | f5d44295461cc716fa391b106f1a5a61f28bedf6 | |
| parent | 867b8dce9ea8f9f22718313691664f1f0e97e4c8 (diff) | |
don't use positional. doesn't work right nowv0.7.111
| -rw-r--r-- | argv.struct.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/argv.struct.go b/argv.struct.go index 633b003..4000267 100644 --- a/argv.struct.go +++ b/argv.struct.go @@ -3,7 +3,7 @@ package main var argv args type args struct { - Repo string `arg:"positional" help:"go import path"` + Repo string `arg:"--repo" help:"repo namespace"` AutoWork bool `arg:"--work" default:"false" 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"` |
