Skip to content

Commit

Permalink
[merge] pull request #890
Browse files Browse the repository at this point in the history
  • Loading branch information
ddollar committed Jul 20, 2016
2 parents 5ae432d + 5956078 commit 91890cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/convox/builds.go
Expand Up @@ -523,7 +523,8 @@ func executeBuildDir(c *cli.Context, dir, app, manifest, description string) (st
cache := !c.Bool("no-cache")

build, err := rackClient(c).CreateBuildSourceProgress(app, tar, cache, manifest, description, func(s string) {
fmt.Printf("\rUploading... %s", strings.TrimSpace(s))
// Pad string with spaces at the end to clear any text left over from a longer string.
fmt.Printf("\rUploading... %s ", strings.TrimSpace(s))
})
if err != nil {
return "", err
Expand Down

0 comments on commit 91890cc

Please sign in to comment.