diff options
author | Junio C Hamano <junkio@cox.net> | 2005-09-04 10:37:07 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-04 10:37:07 -0700 |
commit | 07a95d0ed36dea806e32f23df309506be74915db (patch) | |
tree | 217af557025ef8f72515a937babfd02efc1c131d | |
parent | 52586ecb16f2158de29daabb0ed72b094ca8d5cc (diff) | |
download | git-07a95d0ed36dea806e32f23df309506be74915db.tar.gz |
git-applymbox: fix '-c'.
Earlier round b50abe8843006e9856c633b5abeb4eab53b46629 broke it
by carelessly rewriting the main loop.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | tools/git-applymbox | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/git-applymbox b/tools/git-applymbox index 2b32dab5f5..e58bb21467 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 |