Skip to content

Commit bcce783

Browse files
committed
Change tags info format
1 parent 0727673 commit bcce783

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command/tag/tag.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func TagsInfo(tags map[string]interface{}) ([]string, error) {
2828
if !ok {
2929
return nil, fmt.Errorf("value of tag `%s` should be of type `string` but is of type `%T`", key, value)
3030
}
31-
str = append(str, key+": "+valStr)
31+
str = append(str, key+"="+valStr)
3232
}
3333
return str, nil
3434
}

0 commit comments

Comments
 (0)