Merge pull request #3418 from boumenot/pr-say-artifact

Use Fprint instead of Fprintf
pull/3423/head
Chris Bednarski 10 years ago
commit b605c88c18

@ -231,7 +231,7 @@ func (c BuildCommand) Run(args []string) int {
fmt.Fprintf(&message, "--> %s: ", name)
if artifact != nil {
fmt.Fprintf(&message, artifact.String())
fmt.Fprint(&message, artifact.String())
} else {
fmt.Fprint(&message, "<nothing>")
}

Loading…
Cancel
Save