summaryrefslogtreecommitdiff
path: root/validate/argv.go
diff options
context:
space:
mode:
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 {