summaryrefslogtreecommitdiff
path: root/cobol.go
diff options
context:
space:
mode:
Diffstat (limited to 'cobol.go')
-rw-r--r--cobol.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cobol.go b/cobol.go
index e66ba8d..e75f489 100644
--- a/cobol.go
+++ b/cobol.go
@@ -165,6 +165,9 @@ func verifyPrint(repo *gitpb.Repo) {
if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
end += "(readonly) "
}
+ if repo.GetMasterBranchName() != "master" && repo.GetMasterBranchName() != "main" {
+ end += "(m:" + repo.GetMasterBranchName() + ") "
+ }
log.Info(start, end)
}