handle zero value
This commit is contained in:
parent
aacd3c2d92
commit
9d2be1a960
9
binfo.go
9
binfo.go
|
@ -144,6 +144,7 @@ const (
|
||||||
ModeCGO
|
ModeCGO
|
||||||
ModeVCS
|
ModeVCS
|
||||||
ModeMultiline
|
ModeMultiline
|
||||||
|
ModeNamed
|
||||||
)
|
)
|
||||||
|
|
||||||
func (b Binfo) Summarize(program string, mode SummaryMode) string {
|
func (b Binfo) Summarize(program string, mode SummaryMode) string {
|
||||||
|
@ -193,5 +194,11 @@ func (b Binfo) Summarize(program string, mode SummaryMode) string {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
return fmt.Sprintf("%s:%s%s", program, sep, strings.Join(parts, sep))
|
j := strings.Join(parts, sep)
|
||||||
|
|
||||||
|
if program == "" {
|
||||||
|
return j
|
||||||
|
} else {
|
||||||
|
return fmt.Sprintf("%s:%s%s", program, sep, j)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue