diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 09:15:25 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 09:15:25 -0500 |
| commit | d8706ed738628124e38babc415de224911a6c56c (patch) | |
| tree | 92985ffbac1fdd8ad4037c60930c592a29974776 /main.go | |
| parent | 1528d8d5077cc190afbe5e2b16c35f2e20a9b9b7 (diff) | |
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 { |
