Skip to content

Commit

Permalink
mr merge: Add successful completion message.
Browse files Browse the repository at this point in the history
Other commands, like 'mr reopen' output a nice completion message.  The
'mr merge' command only returns positive status.

Add a successful completion message to 'mr merge'.

Signed-off-by: Prarit Bhargava <[email protected]>
  • Loading branch information
prarit committed May 4, 2021
1 parent 55b6be1 commit 2918d3d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/mr_merge.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package cmd

import (
"fmt"
"log"

"github.com/rsteube/carapace"
Expand Down Expand Up @@ -39,6 +40,7 @@ succeeds`,
if err != nil {
log.Fatal(err)
}
fmt.Printf("Merge Request !%d merged\n", id)
},
}

Expand Down

0 comments on commit 2918d3d

Please sign in to comment.