Skip to content

Commit

Permalink
applymbox: brown paper bag fix.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Mar 17, 2007
1 parent dbb2b41 commit 0d38ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions git-applymbox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ do
*)
git-mailinfo $keep_subject $utf8 \
.dotest/msg .dotest/patch <$i >.dotest/info || exit 1
test -s $dotest/patch || {
test -s .dotest/patch || {
echo "Patch is empty. Was is split wrong?"
stop_here $this
exit 1
}
git-stripspace < .dotest/msg > .dotest/msg-clean
;;
Expand Down

0 comments on commit 0d38ab2

Please sign in to comment.