Commit eac8dafe authored by szager@chromium.org's avatar szager@chromium.org

Add --recursive arg to git-submodule update.

R=jam@chromium.org
BUG=


Review URL: https://chromiumcodereview.appspot.com/12717016

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@189082 0039d316-1c4b-4281-b951-d872f2087c98
parent 6a2e4710
......@@ -112,7 +112,7 @@ if [ "$solution" = "$1" ]; then
else
submodule="${1#*/}"
echo "[$solution] updating $submodule"
"$GIT_EXE" submodule update --quiet "$submodule" |
"$GIT_EXE" submodule update --recursive --quiet "$submodule" |
( grep -v '^Skipping submodule' || true ) | sed "s|^|[$1] |g"
status=$?
if [ "$status" -ne "0" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment