also show debname

This commit is contained in:
Jeff Carr 2025-01-06 15:32:18 -06:00
parent 6cbd7e67af
commit e333ca726b
1 changed files with 3 additions and 0 deletions

View File

@ -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)
}