Do not use Fprintf, use Fprint.

This commit is contained in:
Christopher Boumenot 2016-04-05 22:41:26 -07:00
parent d0ddf34e6e
commit ad3d674919
1 changed files with 1 additions and 1 deletions

View File

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