Index: gclient_scm.py |
diff --git a/gclient_scm.py b/gclient_scm.py |
index c80575e0d2fae66f8a5a134443e3bd1db3d643b2..8572f094a38befc1f5741b235b3d03f8ca51c1ff 100644 |
--- a/gclient_scm.py |
+++ b/gclient_scm.py |
@@ -255,8 +255,6 @@ class GitWrapper(SCMWrapper): |
def UpdateSubmoduleConfig(self): |
submod_cmd = ['git', 'config', '-f', '$toplevel/.git/config', |
- 'submodule.$name.ignore', '||', |
- 'git', 'config', '-f', '$toplevel/.git/config', |
'submodule.$name.ignore', 'all'] |
Paweł Hajdan Jr.
2014/01/16 17:20:35
Ah, I missed there is still submodule.$name here.
|
cmd = ['git', 'submodule', '--quiet', 'foreach', ' '.join(submod_cmd)] |
Paweł Hajdan Jr.
2014/01/16 03:20:06
Do we still need the git submodule foreach then?
szager1
2014/01/16 05:44:52
Yes, we do; the submodule foreach command is the t
|
cmd2 = ['git', 'config', 'diff.ignoreSubmodules', 'all'] |