set PB tables are working

This commit is contained in:
Jeff Carr 2025-09-23 09:02:27 -05:00
parent 540eadaa96
commit 9c1ba367f6
1 changed files with 10 additions and 0 deletions

View File

@ -19,6 +19,16 @@ func (repo *Repo) ActualDevelHash() string {
return ""
}
func (repo *Repo) ActualGetDevelHash() string {
s := repo.GetDevelBranchName()
return repo.GetLocalHash(s)
}
func (repo *Repo) ActualGetUserHash() string {
s := repo.GetUserBranchName()
return repo.GetLocalHash(s)
}
func (repo *Repo) GetLocalHash(brname string) string {
refname := "refs/heads/" + brname
for tag := range repo.Tags.IterAll() {