From e5c43347ea72b6dfa6738296506c5e22ae7aaad5 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 5 Sep 2025 13:04:46 -0500 Subject: [PATCH] try even quicker release process --- main.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.go b/main.go index aa3fe33..fec3f9a 100644 --- a/main.go +++ b/main.go @@ -106,6 +106,10 @@ func main() { if _, count, _, err := me.forge.IsEverythingOnMaster(); err != nil { log.Info("not everything is on the master branch (", count, "repos)") + if argv.Quick != nil { + // quick also means ignore the master branch check + argv.Force = true + } if !argv.Force { os.Exit(-1) }