From 4d532add79dfeb7d70fd26a7b1f3b7bdc0796697 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 1 Nov 2024 23:08:10 -0500 Subject: [PATCH] make the defaults the way I want. it's called 'author rules' Signed-off-by: Jeff Carr --- argv.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/argv.go b/argv.go index c0df176..583fada 100644 --- a/argv.go +++ b/argv.go @@ -7,12 +7,11 @@ package main */ type args struct { - Repo string `arg:"positional" help:"go import path"` - // Work bool `arg:"--work" help:"make a work directory"` - NoWork bool `arg:"--no-work" help:"do not make or modify the go.work file"` - GoSrc bool `arg:"--go-src" help:"only work in ~/go/src"` - DryRun bool `arg:"--dry-run" help:"show what would be run"` - Recursive bool `arg:"--recursive" help:"resursively clone all dependencies"` + Repo string `arg:"positional" help:"go import path"` + NoWork bool `arg:"--no-work" default:"true" help:"do not make or modify the go.work file"` + GoSrc bool `arg:"--go-src" default:"true" help:"only work in ~/go/src"` + DryRun bool `arg:"--dry-run" help:"show what would be run"` + Recursive bool `arg:"--recursive" default:"false" help:"resursively clone all dependencies"` } func (a args) Description() string {