summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-06 15:32:18 -0600
committerJeff Carr <[email protected]>2025-01-06 15:32:18 -0600
commite333ca726bf64e80119b2c2a7ae8b33c80ec95a9 (patch)
tree5646d0be0424d4215a8acf6f9338213d44305e39 /human.go
parent6cbd7e67af54a9854740aeab288bc9e447569337 (diff)
also show debname
Diffstat (limited to 'human.go')
-rw-r--r--human.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/human.go b/human.go
index f184966..045f567 100644
--- a/human.go
+++ b/human.go
@@ -42,6 +42,9 @@ func (f *Forge) standardHeader(r *ForgeConfig) string {
if r.UserBranchName != "" {
flags += "(user=" + r.UserBranchName + ") "
}
+ if r.DebName != "" {
+ flags += "(deb=" + r.DebName + ") "
+ }
return fmt.Sprintf("%-4s %-40s %s", readonly, r.GoPath, flags)
}