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

Use Fprint instead of Fprintf
This commit is contained in:
Chris Bednarski 2016-04-06 14:49:46 -07:00
commit b605c88c18
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>")
}