Skip to content

Commit 27fd67f

Browse files
author
Aaron Schlesinger
committed
fix(build.go): add output back to match that of the builder shell script
1 parent 77d2325 commit 27fd67f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pkg/gitreceive/build.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ func build(conf *Config, builderKey, gitSha string) error {
259259
}
260260

261261
log.Info("Build complete.")
262-
262+
log.Info("Launching app.")
263263
log.Info("Launching...")
264264

265265
buildHook := &pkg.BuildHook{
@@ -284,9 +284,9 @@ func build(conf *Config, builderKey, gitSha string) error {
284284
return fmt.Errorf("No release returned from Deis controller")
285285
}
286286

287-
log.Info("Done, %s:v%d deployed to Deis", appName, release)
288-
log.Info("Use 'deis open' to view this application in your browser")
289-
log.Info("To learn more, use 'deis help' or visit http://deis.io")
287+
log.Info("Done, %s:v%d deployed to Deis\n", appName, release)
288+
log.Info("Use 'deis open' to view this application in your browser\n")
289+
log.Info("To learn more, use 'deis help' or visit http://deis.io\n")
290290

291291
gcCmd := repoCmd(repoDir, "git", "gc")
292292
if err := run(gcCmd); err != nil {

0 commit comments

Comments
 (0)