Skip to content

Commit e4cd4ca

Browse files
committed
Add some vertical whitespace to output
1 parent 6a72b8a commit e4cd4ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/release.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func runOrDie(cmd *exec.Cmd) string {
2525
fmt.Println(cmd.String())
2626
out, err := cmd.CombinedOutput()
2727
if err != nil {
28-
fmt.Print(string(out))
28+
fmt.Println(string(out))
2929
fmt.Println(err)
3030
os.Exit(1)
3131
}
@@ -65,7 +65,7 @@ func release() {
6565
// Show the result of the tagging operation, including the tag message and
6666
// signature, and the commit hash and message, but not the diff.
6767
show := runOrDie(exec.Command("git", "show", "-s", version))
68-
fmt.Print(show)
68+
fmt.Println(show)
6969

7070
if push {
7171
runOrDie(exec.Command("git", "push", "origin", version))
@@ -140,7 +140,7 @@ func hotfix() {
140140
// Show the result of the tagging operation, including the tag message and
141141
// signature, and the commit hash and message, but not the diff.
142142
show := runOrDie(exec.Command("git", "show", "-s", version))
143-
fmt.Print(show)
143+
fmt.Println(show)
144144

145145
// Compute the name of the release branch that will contain the cherry-picked
146146
// commits. This branch may or may not exist already, and it doesn't matter:

0 commit comments

Comments
 (0)