diff options
| author | Jeff Carr <[email protected]> | 2025-09-26 03:28:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-26 03:28:12 -0500 |
| commit | 544b0af3cc21ffe7d8524161b521ef6d8f16fb29 (patch) | |
| tree | 59c4cdc9e1d971016e76afbe8b4ef8d6b43a4313 | |
| parent | c5d2f294c46ea64313aa27479155dd78739c567a (diff) | |
notes on safety of deletev0.25.36
| -rw-r--r-- | doClean.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -314,7 +314,9 @@ func checkPatchIds(repo *gitpb.Repo, b1 string, b2 string) error { log.Info(key, val) } - if !safe { + if safe { + log.Info("branch is probably safe to delete", b1, b2) + } else { log.Info("branch is probably not safe to delete", b1, b2, baderr) } return baderr |
