summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--humanTable.go6
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":