diff options
| -rw-r--r-- | tablePackaging.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tablePackaging.go b/tablePackaging.go index 496ae95..be52ff9 100644 --- a/tablePackaging.go +++ b/tablePackaging.go @@ -58,6 +58,11 @@ func makePackagingTable(pb *gitpb.Repos) *gitpb.ReposTable { }) col.Width = 8 + col = tablePB.AddStringFunc("cur .deb Version", func(r *gitpb.Repo) string { + return "find this" + }) + col.Width = 16 + col = tablePB.AddStringFunc("new .deb Version", func(r *gitpb.Repo) string { return me.forge.GetPackageVersion(r) }) |
