Browse Source

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>
maint
Pierre Habouzit 17 years ago committed by Junio C Hamano
parent
commit
d1f63a37ca
  1. 2
      git-submodule.sh

2
git-submodule.sh

@ -264,6 +264,7 @@ cmd_update() @@ -264,6 +264,7 @@ cmd_update()
do
case "$1" in
-q|--quiet)
shift
quiet=1
;;
-i|--init)
@ -281,7 +282,6 @@ cmd_update() @@ -281,7 +282,6 @@ cmd_update()
break
;;
esac
shift
done

git ls-files --stage -- "$@" | grep '^160000 ' |

Loading…
Cancel
Save