We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0727673 commit bcce783Copy full SHA for bcce783
command/tag/tag.go
@@ -28,7 +28,7 @@ func TagsInfo(tags map[string]interface{}) ([]string, error) {
28
if !ok {
29
return nil, fmt.Errorf("value of tag `%s` should be of type `string` but is of type `%T`", key, value)
30
}
31
- str = append(str, key+": "+valStr)
+ str = append(str, key+"="+valStr)
32
33
return str, nil
34
0 commit comments