Skip to content

Commit 7959918

Browse files
authored
Fix missing newlines in logs (#13)
* Fix missing newlines in logs * Version 0.7.1
1 parent d8c4260 commit 7959918

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buildpack.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ api = "0.6"
22

33
[buildpack]
44
id = "heroku/procfile"
5-
version = "0.7.0"
5+
version = "0.7.1"
66
name = "Procfile"
77

88
[[stacks]]

cmd/release/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func main() {
1414
return
1515
}
1616

17-
print("[INFO] Discovering process types")
17+
println("[INFO] Discovering process types")
1818
appDir := os.Args[1]
1919
layersDir := os.Args[2]
2020

@@ -33,5 +33,5 @@ func main() {
3333
processNames = append(processNames, "(none)")
3434
}
3535

36-
fmt.Sprintf("[INFO] Procfile declares types -> %s", strings.Join(processNames, ", "))
36+
fmt.Printf("[INFO] Procfile declares types -> %s\n", strings.Join(processNames, ", "))
3737
}

0 commit comments

Comments
 (0)