diff options
| author | Jeff Carr <[email protected]> | 2025-10-08 01:25:40 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-08 01:25:40 -0500 |
| commit | 26fe7d72d7ad3e788c9596e835feb8c9ef41ed2d (patch) | |
| tree | f89ec1b1930bc2ae3a96ff1927f887f662d0fc31 /tableBuild.go | |
| parent | a14c24a581f2e8a38a8c37fc2b013962472c36ce (diff) | |
add memerable names
Diffstat (limited to 'tableBuild.go')
| -rw-r--r-- | tableBuild.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tableBuild.go b/tableBuild.go index 99f08cb..870a94e 100644 --- a/tableBuild.go +++ b/tableBuild.go @@ -10,8 +10,8 @@ import ( func (f *Forge) GetPackageVersion(repo *gitpb.Repo) string { var s string - s = repo.GetCurrentBranchVersion() - if repo.IsDirty() { + s = repo.GetUserVersion() + "s" + if repo.CheckDirty() { s += "-dirty" } return s |
