File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ func runOrDie(cmd *exec.Cmd) string {
25
25
fmt .Println (cmd .String ())
26
26
out , err := cmd .CombinedOutput ()
27
27
if err != nil {
28
- fmt .Print (string (out ))
28
+ fmt .Println (string (out ))
29
29
fmt .Println (err )
30
30
os .Exit (1 )
31
31
}
@@ -65,7 +65,7 @@ func release() {
65
65
// Show the result of the tagging operation, including the tag message and
66
66
// signature, and the commit hash and message, but not the diff.
67
67
show := runOrDie (exec .Command ("git" , "show" , "-s" , version ))
68
- fmt .Print (show )
68
+ fmt .Println (show )
69
69
70
70
if push {
71
71
runOrDie (exec .Command ("git" , "push" , "origin" , version ))
@@ -140,7 +140,7 @@ func hotfix() {
140
140
// Show the result of the tagging operation, including the tag message and
141
141
// signature, and the commit hash and message, but not the diff.
142
142
show := runOrDie (exec .Command ("git" , "show" , "-s" , version ))
143
- fmt .Print (show )
143
+ fmt .Println (show )
144
144
145
145
// Compute the name of the release branch that will contain the cherry-picked
146
146
// commits. This branch may or may not exist already, and it doesn't matter:
You can’t perform that action at this time.
0 commit comments