summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2013-12-18 17:44:58 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-12-18 17:44:59 +0000
commitf045d49a71b64b854589c8821d8bf220c6ed9fd3 (patch)
treeb4facc31b41327b5478b12e9213b4f4179ebb171 /manifest_xml.py
parent53d6a7b8955e9377cc0a12206be357e7936621b1 (diff)
parent335f5ef4ad25a85c69fe6d8c848c5d1d447e22c8 (diff)
downloadgit-repo-f045d49a71b64b854589c8821d8bf220c6ed9fd3.tar.gz
Merge "Add --archive option to init to sync using git archive"
Diffstat (limited to 'manifest_xml.py')
-rw-r--r--manifest_xml.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/manifest_xml.py b/manifest_xml.py
index 457d5ab0..785976bc 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -329,6 +329,10 @@ class XmlManifest(object):
329 def IsMirror(self): 329 def IsMirror(self):
330 return self.manifestProject.config.GetBoolean('repo.mirror') 330 return self.manifestProject.config.GetBoolean('repo.mirror')
331 331
332 @property
333 def IsArchive(self):
334 return self.manifestProject.config.GetBoolean('repo.archive')
335
332 def _Unload(self): 336 def _Unload(self):
333 self._loaded = False 337 self._loaded = False
334 self._projects = {} 338 self._projects = {}