summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/argv.go b/argv.go
new file mode 100644
index 0000000..4000267
--- /dev/null
+++ b/argv.go
@@ -0,0 +1,14 @@
+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"`
+ DryRun bool `arg:"--dry-run" help:"show what would be run"`
+ 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"`
+}