diff options
| author | Jeff Carr <[email protected]> | 2025-10-09 04:31:10 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-09 04:31:10 -0500 |
| commit | 98bb38d6999f94d507868247841d9b8d6eff8a75 (patch) | |
| tree | f1dc35b0dad362e128d975d4b8a04247756838a2 /tablePackaging.go | |
| parent | 0b646a20b812f337251c0ed950afeba9b97cfcc7 (diff) | |
cleaning up publish
Diffstat (limited to 'tablePackaging.go')
| -rw-r--r-- | tablePackaging.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tablePackaging.go b/tablePackaging.go index 0da43b1..74f2e0d 100644 --- a/tablePackaging.go +++ b/tablePackaging.go @@ -38,10 +38,11 @@ func getDebFilename(repo *gitpb.Repo) string { return "" } -func printPackagingTable(pb *gitpb.Repos) { +func printPackagingTable(pb *gitpb.Repos) string { tablePB := makePackagingTable(pb) tablePB.PrintTable() - log.Printf("wit.packagingTable() %d repos\n", pb.Len()) + s := log.Sprintf("wit.packagingTable() %d repos", pb.Len()) + return s } func makePackagingTable(pb *gitpb.Repos) *gitpb.ReposTable { |
