From b2c434bf29f6cefc439814a41b5ca4642291a169 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 25 Sep 2025 01:49:00 -0500 Subject: [PATCH] fix --all default --- argv.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/argv.go b/argv.go index 10c58fe..2fb7330 100644 --- a/argv.go +++ b/argv.go @@ -61,8 +61,8 @@ type NormalCmd struct { } type CommitCmd struct { - Submit bool `arg:"--submit" default:"true" help:"submit the patches to forge"` - All bool `arg:"--all" default:"true" help:"git commit in all dirty repos"` + // Submit bool `arg:"--submit" help:"submit the patches to forge"` + All bool `arg:"--all" help:"git commit in all dirty repos"` } type testCmd string @@ -126,9 +126,9 @@ type ConfigCmd struct { type ConfigAddCmd struct { Path string `arg:"--path" help:"absolute path of the git repo"` GoPath string `arg:"--gopath" help:"GO path of the git repo"` - Directory bool `arg:"--directory" default:"false" help:"repo is a directory to match against"` - ReadOnly bool `arg:"--readonly" default:"false" help:"repo is readonly"` - Writable bool `arg:"--writable" default:"false" help:"repo is writable"` + Directory bool `arg:"--directory" help:"repo is a directory to match against"` + ReadOnly bool `arg:"--readonly" help:"repo is readonly"` + Writable bool `arg:"--writable" help:"repo is writable"` Favorite bool `arg:"--favorite" default:"false" help:"forge will always go-clone or git clone this"` Private bool `arg:"--private" default:"false" help:"repo can not be published"` Interesting bool `arg:"--interesting" default:"false" help:"something you decided was cool"`