pull: don't stop the process when one merge fail

Michael Muré created

Change summary

commands/pull.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

commands/pull.go 🔗

@@ -38,7 +38,7 @@ func runPull(cmd *cobra.Command, args []string) error {
 
 	for merge := range backend.MergeAll(remote) {
 		if merge.Err != nil {
-			return merge.Err
+			fmt.Println(merge.Err)
 		}
 
 		if merge.Status != bug.MergeStatusNothing {