summaryrefslogtreecommitdiff
path: root/argv.struct.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 07:34:23 -0500
committerJeff Carr <[email protected]>2025-10-19 07:34:23 -0500
commitf945380a98f0b52a4b5d1614295700a92fdd5f2b (patch)
treef5d44295461cc716fa391b106f1a5a61f28bedf6 /argv.struct.go
parent867b8dce9ea8f9f22718313691664f1f0e97e4c8 (diff)
don't use positional. doesn't work right nowv0.7.111
Diffstat (limited to 'argv.struct.go')
-rw-r--r--argv.struct.go2
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"`