summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subcmds/forall.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/subcmds/forall.py b/subcmds/forall.py
index 3ddc3c3d..b93cd6d0 100644
--- a/subcmds/forall.py
+++ b/subcmds/forall.py
@@ -205,6 +205,13 @@ without iterating through the remaining projects.
205 mirror = self.manifest.IsMirror 205 mirror = self.manifest.IsMirror
206 rc = 0 206 rc = 0
207 207
208 smart_sync_manifest_name = "smart_sync_override.xml"
209 smart_sync_manifest_path = os.path.join(
210 self.manifest.manifestProject.worktree, smart_sync_manifest_name)
211
212 if os.path.isfile(smart_sync_manifest_path):
213 self.manifest.Override(smart_sync_manifest_path)
214
208 if not opt.regex: 215 if not opt.regex:
209 projects = self.GetProjects(args) 216 projects = self.GetProjects(args)
210 else: 217 else: