Skip to content

Commit

Permalink
Add some vertical whitespace to output
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongable committed Mar 17, 2023
1 parent 6a72b8a commit e4cd4ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func runOrDie(cmd *exec.Cmd) string {
fmt.Println(cmd.String())
out, err := cmd.CombinedOutput()
if err != nil {
fmt.Print(string(out))
fmt.Println(string(out))
fmt.Println(err)
os.Exit(1)
}
Expand Down Expand Up @@ -65,7 +65,7 @@ func release() {
// Show the result of the tagging operation, including the tag message and
// signature, and the commit hash and message, but not the diff.
show := runOrDie(exec.Command("git", "show", "-s", version))
fmt.Print(show)
fmt.Println(show)

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

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

0 comments on commit e4cd4ca

Please sign in to comment.