diff options
| author | Jeff Carr <[email protected]> | 2025-09-03 20:50:54 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-03 20:50:54 -0500 |
| commit | d6cd7fc88f4bf0bb6069a2ceecef5523fddf836f (patch) | |
| tree | 937eeb5bb8a33e9d28b998f0ee7a2c2384b6e0f0 /humanTable.go | |
| parent | 50351298b6bc11f1b56916caac7eec506a0d845a (diff) | |
append patches to local patches file
Diffstat (limited to 'humanTable.go')
| -rw-r--r-- | humanTable.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/humanTable.go b/humanTable.go index 6bd4717..9516d3f 100644 --- a/humanTable.go +++ b/humanTable.go @@ -330,8 +330,8 @@ func (psets *Patchsets) PrintTable() { log.DaemonMode(true) // print the header - args := []string{"commit hash", "", "", "name", "Repo Namespace", "", "", "", "", ""} - sizes := []int{36, 3, 3, 40, 80, 2, 2, 2, 2, 2} + args := []string{"commit hash", "new hash", "", "", "name", "Repo Namespace", "", "", "", "", ""} + sizes := []int{12, 12, 3, 3, 40, 80, 2, 2, 2, 2} log.Info(cobol.StandardTableSize10(sizes, args)) var countCONTENTS int @@ -345,7 +345,7 @@ func (psets *Patchsets) PrintTable() { partId := log.Sprintf("%d", i) _, fname := filepath.Split(p.GetFilename()) - args = []string{p.CommitHash, cId, partId, fname, p.GetNamespace(), "", "", "", "", ""} + args = []string{p.CommitHash, p.NewHash, cId, partId, fname, p.GetNamespace(), "", "", "", "", ""} start := cobol.StandardTableSize10(sizes, args) log.Info(start) |
