1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-08 12:26:13 +02:00

git-submodule: move ill placed shift.

When running git submodule update -i, the "-i" is shifted before recursing
into cmd_init and then again outside of the loop. This causes some /bin/sh
to complain about shifting when there are no arguments left (and would
discard anything written after -i too).

Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Pierre Habouzit 2008-07-21 20:15:59 +02:00 committed by Junio C Hamano
parent 734a6ffafb
commit 00332b8152

View File

@ -269,6 +269,7 @@ cmd_update()
do
case "$1" in
-q|--quiet)
shift
quiet=1
;;
-i|--init)
@ -286,7 +287,6 @@ cmd_update()
break
;;
esac
shift
done
git ls-files --stage -- "$@" | grep '^160000 ' |