From 60d708b220b706125b761aa4bbd82f046ef650a5 Mon Sep 17 00:00:00 2001 From: Clemens Buchacher Date: Thu, 2 Jul 2015 11:11:33 +0200 Subject: [PATCH] rebase: return non-zero error code if format-patch fails Since e481af06 (rebase: Handle cases where format-patch fails) we notice if format-patch fails and return immediately from git-rebase--am. We save the return value with ret=$?, but then we return $?, which is usually zero in this case. Fix this by returning $ret instead. Cc: Andrew Wong Signed-off-by: Clemens Buchacher Helped-by: Jorge Nunes Signed-off-by: Junio C Hamano --- git-rebase--am.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-rebase--am.sh b/git-rebase--am.sh index f92373233..9ae898bc1 100644 --- a/git-rebase--am.sh +++ b/git-rebase--am.sh @@ -78,7 +78,7 @@ else As a result, git cannot rebase them. EOF - return $? + return $ret fi git am $git_am_opt --rebasing --resolvemsg="$resolvemsg" \