summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-15 15:51:27 -0600
committerJeff Carr <[email protected]>2024-12-15 15:51:27 -0600
commit882c448b85ebf738cb1ab3803115c0701b809d90 (patch)
treec69acef37e7c1bbe6d7473b82dac27b81e80bfb0 /argv.go
parentbab2506d348a634ad35f81a09675c9beed493d2b (diff)
add --ignore for edge cases to see what happensv0.6.29
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/argv.go b/argv.go
index 057f967..f2abb8b 100644
--- a/argv.go
+++ b/argv.go
@@ -16,6 +16,7 @@ type args struct {
Pull bool `arg:"--git-pull" default:"false" help:"run 'git pull'"`
Build bool `arg:"--build" default:"true" help:"try to build it after clone"`
Install bool `arg:"--install" default:"false" 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"`
}