Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(475)

Unified Diff: crup-runner.sh

Issue 12717016: Add --recursive arg to git-submodule update. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crup-runner.sh
diff --git a/crup-runner.sh b/crup-runner.sh
index c8f5822c22a13852f6c2f3a7259cd0af80226ea1..50c1d06b5df7fb5fda1de5fbdf9908700ceb7166 100755
--- a/crup-runner.sh
+++ b/crup-runner.sh
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698