summaryrefslogtreecommitdiff
path: root/buildstream/_artifact.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_artifact.py')
-rw-r--r--buildstream/_artifact.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/buildstream/_artifact.py b/buildstream/_artifact.py
index 41dc14367..4d9e4bf08 100644
--- a/buildstream/_artifact.py
+++ b/buildstream/_artifact.py
@@ -195,17 +195,13 @@ class Artifact():
#
# Returns:
# (bool): True if artifact cached with buildtree, False if
- # element not cached or missing expected buildtree.
- # Note this only confirms if a buildtree is present,
- # not its contents.
+ # missing expected buildtree. Note this only confirms
+ # if a buildtree is present, not its contents.
#
def cached_buildtree(self):
element = self._element
- if not element._cached():
- return False
-
key = self.get_extract_key()
if not self._artifacts.contains_subdir_artifact(element, key, 'buildtree'):
return False
@@ -222,9 +218,6 @@ class Artifact():
#
def buildtree_exists(self):
- if not self._element._cached():
- return False
-
artifact_vdir, _ = self._get_directory()
return artifact_vdir._exists('buildtree')