output on failure

This commit is contained in:
Jeff Carr 2025-09-22 20:32:34 -05:00
parent 5325d874a8
commit 6890e68af3
1 changed files with 3 additions and 1 deletions

View File

@ -171,7 +171,9 @@ func (f *Forge) VerifyBranchNames(repo *gitpb.Repo) {
repo.SetUserBranchName(uname)
}
}
// log.Info("VerifyBranchNames", repo.GetMasterBranchName(), repo.GetDevelBranchName(), repo.GetUserBranchName())
if repo.GetUserBranchName() == "" || repo.GetDevelBranchName() == "" {
log.Infof("VerifyBranchNames() failed m=%s d=%s u=%s\n", repo.GetMasterBranchName(), repo.GetDevelBranchName(), repo.GetUserBranchName())
}
}
// what name should be used for the user branch?