Skip to content

Commit 0d38ab2

Browse files
author
Junio C Hamano
committed
applymbox: brown paper bag fix.
An earlier patch 87ab799 broke applymbox by blindly copying piece from git-am, causing a harmless but annoying series of error messages. Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent dbb2b41 commit 0d38ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git-applymbox.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ do
7777
*)
7878
git-mailinfo $keep_subject $utf8 \
7979
.dotest/msg .dotest/patch <$i >.dotest/info || exit 1
80-
test -s $dotest/patch || {
80+
test -s .dotest/patch || {
8181
echo "Patch is empty. Was is split wrong?"
82-
stop_here $this
82+
exit 1
8383
}
8484
git-stripspace < .dotest/msg > .dotest/msg-clean
8585
;;

0 commit comments

Comments
 (0)