diff options
| author | Jeff Carr <[email protected]> | 2025-01-18 10:34:38 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-18 10:34:38 -0600 |
| commit | 9b8cb52b7b4ba895d026edb7c5e5f65d85d5a8ad (patch) | |
| tree | f25ca4feb3b0d31d22382cd8efb3bd458209bd67 /humanTable.go | |
| parent | 538531f50350fb7c63b2dd08372c89275a834763 (diff) | |
show deb package name if different than the standardv0.0.53
Diffstat (limited to 'humanTable.go')
| -rw-r--r-- | humanTable.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/humanTable.go b/humanTable.go index 54afb68..0bd9718 100644 --- a/humanTable.go +++ b/humanTable.go @@ -2,6 +2,7 @@ package forgepb import ( "fmt" + "path/filepath" "go.wit.com/lib/gui/shell" "go.wit.com/lib/protobuf/gitpb" @@ -194,6 +195,11 @@ func (f *Forge) printRepoToTable(repo *gitpb.Repo) { end += "(u:" + repo.GetUserBranchName() + ") " } + debname := f.Config.DebName(repo.GetGoPath()) + if debname != filepath.Base(gopath) { + end += "(deb:" + debname + ") " + } + switch repo.GetState() { case "PERFECT": case "unchanged": |
