Skip to content

Commit

Permalink
Merge pull request #859 from convox/build-cache
Browse files Browse the repository at this point in the history
Add newline after error statement
  • Loading branch information
MiguelMoll authored Jul 11, 2016
2 parents a327daf + 5134ebe commit 0397b43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/cmd/build/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ func cloneGit(s string) {

err = runE("src", "git", "submodule", "update", "--init", "--recursive")
if err != nil {
fmt.Printf("WARNING: Failed to update submodules: %s. Continuing...", err)
fmt.Printf("WARNING: Failed to update submodules: %s. Continuing...\n", err)
}

if commitish != "" {
run("src", "git", "checkout", commitish)

err = runE("src", "git", "submodule", "update", "--recursive")
if err != nil {
fmt.Printf("WARNING: Failed to update submodules: %s. Continuing...", err)
fmt.Printf("WARNING: Failed to update submodules: %s. Continuing...\n", err)
}
}

Expand Down

0 comments on commit 0397b43

Please sign in to comment.