summaryrefslogtreecommitdiff
path: root/validate/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 16:04:07 -0600
committerJeff Carr <[email protected]>2024-12-01 16:04:07 -0600
commit412658698a6d1ad09d64723e9a10e676c77afa94 (patch)
treed9b3622eee7414982589dc0496c76854fd1b7600 /validate/argv.go
parent82935ae6b2d413322b18a9b487973e5ab04e6efd (diff)
Repotype() working somewhatv0.0.15
Diffstat (limited to 'validate/argv.go')
-rw-r--r--validate/argv.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/validate/argv.go b/validate/argv.go
index c46149b..35dd9a9 100644
--- a/validate/argv.go
+++ b/validate/argv.go
@@ -9,9 +9,10 @@ import (
var argv args
type args struct {
- List bool `arg:"--list" default:"false" help:"list repos in your config"`
- SaveConfig bool `arg:"--save" default:"false" help:"save your config file at the end"`
- Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`
+ Repo string `arg:"--repo" help:"repo to check"`
+ List bool `arg:"--list" default:"false" help:"list repos in your config"`
+ SaveConfig bool `arg:"--save" default:"false" help:"save your config file at the end"`
+ Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`
}
func (a args) Description() string {