summaryrefslogtreecommitdiffstats
path: root/git_superproject.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_superproject.py')
-rw-r--r--git_superproject.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/git_superproject.py b/git_superproject.py
index 8f1e04d6..0c477060 100644
--- a/git_superproject.py
+++ b/git_superproject.py
@@ -298,6 +298,9 @@ class Superproject(object):
298 path = project.relpath 298 path = project.relpath
299 if not path: 299 if not path:
300 return True 300 return True
301 # Skip the project with revisionId.
302 if project.revisionId:
303 return True
301 # Skip the project if it comes from the local manifest. 304 # Skip the project if it comes from the local manifest.
302 return any(s.startswith(LOCAL_MANIFEST_GROUP_PREFIX) for s in project.groups) 305 return any(s.startswith(LOCAL_MANIFEST_GROUP_PREFIX) for s in project.groups)
303 306