summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-22 20:14:35 -0500
committerJeff Carr <[email protected]>2025-09-22 20:14:35 -0500
commit5a54f9c0b24c09502a93b4411705b9cc2f93a35c (patch)
tree97309d1541e56ff728b99df7aa1fd0dec8fa7349
parent31db2f96f6c3a1567f40128193824113692f3334 (diff)
good griefv0.25.15
-rw-r--r--doNormal.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/doNormal.go b/doNormal.go
index b8271e3..71e08af 100644
--- a/doNormal.go
+++ b/doNormal.go
@@ -75,12 +75,15 @@ func checkNormalRepoState(repo *gitpb.Repo) error {
log.Info("ABNORMAL: master branch name was blank in", repo.GetFullPath())
}
if repo.GetMasterBranchName() == "" {
+ me.forge.VerifyBranchNames(repo)
err = log.Errorf("master branch name blank")
}
if repo.GetDevelBranchName() == "" {
+ me.forge.VerifyBranchNames(repo)
err = log.Errorf("devel branch name blank")
}
if repo.GetUserBranchName() == "" {
+ me.forge.VerifyBranchNames(repo)
err = log.Errorf("user branch name blank")
}
if repo.GetGoPath() == repo.GetNamespace() {