summaryrefslogtreecommitdiffstats
path: root/manifest_xml.py
diff options
context:
space:
mode:
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 68ead53c..daf85d30 100644
--- a/manifest_xml.py
+++ b/manifest_xml.py
@@ -666,6 +666,10 @@ https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md
666 def HasSubmodules(self): 666 def HasSubmodules(self):
667 return self.manifestProject.config.GetBoolean('repo.submodules') 667 return self.manifestProject.config.GetBoolean('repo.submodules')
668 668
669 @property
670 def EnableGitLfs(self):
671 return self.manifestProject.config.GetBoolean('repo.git-lfs')
672
669 def GetDefaultGroupsStr(self): 673 def GetDefaultGroupsStr(self):
670 """Returns the default group string for the platform.""" 674 """Returns the default group string for the platform."""
671 return 'default,platform-' + platform.system().lower() 675 return 'default,platform-' + platform.system().lower()