summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-31 09:15:25 -0500
committerJeff Carr <[email protected]>2025-08-31 09:15:25 -0500
commitd8706ed738628124e38babc415de224911a6c56c (patch)
tree92985ffbac1fdd8ad4037c60930c592a29974776 /main.go
parent1528d8d5077cc190afbe5e2b16c35f2e20a9b9b7 (diff)
fix the release process somewhatv0.23.95v0.23.94v0.23.93
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 063fa2d..aa3fe33 100644
--- a/main.go
+++ b/main.go
@@ -106,7 +106,9 @@ func main() {
if _, count, _, err := me.forge.IsEverythingOnMaster(); err != nil {
log.Info("not everything is on the master branch (", count, "repos)")
- os.Exit(-1)
+ if !argv.Force {
+ os.Exit(-1)
+ }
}
if me.startRepo == nil {