summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-19 09:25:39 -0600
committerJeff Carr <[email protected]>2025-01-19 09:25:39 -0600
commitf29f25b9b7ddf0ebf869ba764df844f87fce063f (patch)
treedce036adb6314838a5428fccdff32828f940b339
parent43286920394e248f9fb121c9c64c3f4185b97dc3 (diff)
hide uerr in tablev0.0.57
-rw-r--r--humanTable.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/humanTable.go b/humanTable.go
index 22df766..8462323 100644
--- a/humanTable.go
+++ b/humanTable.go
@@ -166,6 +166,10 @@ func (f *Forge) printRepoToTable(repo *gitpb.Repo) {
var mhort string = repo.GetMasterVersion()
var dhort string = repo.GetDevelVersion()
var uhort string = repo.GetUserVersion()
+ if uhort == "uerr" {
+ // blank these out
+ uhort = ""
+ }
var thort string = repo.GetTargetVersion()
var chort string = repo.GetCurrentBranchVersion()
var cname string = repo.GetCurrentBranchName()