diff options
Diffstat (limited to 'currentVersions.go')
| -rw-r--r-- | currentVersions.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/currentVersions.go b/currentVersions.go index 4cbaa72..d5a2212 100644 --- a/currentVersions.go +++ b/currentVersions.go @@ -35,7 +35,7 @@ func (repo *Repo) GetLastTag() string { return result.Stdout[0] } -func (repo *Repo) GitMasterVersion() string { +func (repo *Repo) GetMasterVersion() string { bname := repo.GetMasterBranchName() v, err := repo.gitVersionByName(bname) /* @@ -54,7 +54,7 @@ func (repo *Repo) GitMasterVersion() string { } } -func (repo *Repo) GitDevelVersion() string { +func (repo *Repo) GetDevelVersion() string { bname := repo.GetDevelBranchName() v, err := repo.gitVersionByName(bname) if err == nil { @@ -65,7 +65,7 @@ func (repo *Repo) GitDevelVersion() string { } } -func (repo *Repo) GitUserVersion() string { +func (repo *Repo) GetUserVersion() string { bname := repo.GetUserBranchName() if bname != "jcarr" { panic("not jcarr bname =" + bname) |
