summaryrefslogtreecommitdiff
path: root/tools/git-applymbox
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-09-04 17:37:07 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-09-04 17:37:07 (GMT)
commit07a95d0ed36dea806e32f23df309506be74915db (patch)
tree217af557025ef8f72515a937babfd02efc1c131d /tools/git-applymbox
parent52586ecb16f2158de29daabb0ed72b094ca8d5cc (diff)
downloadgit-07a95d0ed36dea806e32f23df309506be74915db.zip
git-07a95d0ed36dea806e32f23df309506be74915db.tar.gz
git-07a95d0ed36dea806e32f23df309506be74915db.tar.bz2
git-applymbox: fix '-c'.
Earlier round b50abe8843006e9856c633b5abeb4eab53b46629 broke it by carelessly rewriting the main loop. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'tools/git-applymbox')
-rwxr-xr-xtools/git-applymbox3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/git-applymbox b/tools/git-applymbox
index 2b32dab..e58bb21 100755
--- a/tools/git-applymbox
+++ b/tools/git-applymbox
@@ -68,7 +68,8 @@ do
i="$1"
case "$resume,$continue" in
f,$i) resume=t;;
- f,*) continue;;
+ f,*) shift
+ continue;;
*)
git-mailinfo $keep_subject $utf8 \
.dotest/msg .dotest/patch <$i >.dotest/info || exit 1