summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 19:18:23 -0600
committerJeff Carr <[email protected]>2025-01-29 12:18:16 -0600
commit6e7874faa6223a8c8f27b6e651d44419cdf8bfb0 (patch)
treed30bef35e6647e7e90a35da4f3351a869808570f /main.go
parentca92a4f4e4677ed14d3a4b2d028f667f31ed02c9 (diff)
switch to 'verify devel'
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/main.go b/main.go
index 7751b8c..3030314 100644
--- a/main.go
+++ b/main.go
@@ -85,12 +85,18 @@ func main() {
}
okExit("")
}
+
if argv.Clean.GitReset != nil {
findAll() // select all the repos
doGitReset()
okExit("reset")
}
+ if argv.Clean.Verify != nil {
+ doVerifyDevel()
+ okExit("verify")
+ }
+
if err := doClean(); err != nil {
badExit(err)
}