diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 14b03a30..555bf736 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -982,6 +982,12 @@ https://gerrit.googlesource.com/git-repo/+/HEAD/docs/manifest-format.md | |||
982 | return None | 982 | return None |
983 | 983 | ||
984 | @property | 984 | @property |
985 | def CloneFilterForDepth(self): | ||
986 | if self.manifestProject.clone_filter_for_depth: | ||
987 | return self.manifestProject.clone_filter_for_depth | ||
988 | return None | ||
989 | |||
990 | @property | ||
985 | def PartialCloneExclude(self): | 991 | def PartialCloneExclude(self): |
986 | exclude = self.manifest.manifestProject.partial_clone_exclude or "" | 992 | exclude = self.manifest.manifestProject.partial_clone_exclude or "" |
987 | return set(x.strip() for x in exclude.split(",")) | 993 | return set(x.strip() for x in exclude.split(",")) |