summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarius Makovsky <traveltissues@protonmail.com>2019-09-05 15:15:07 +0100
committerDarius Makovsky <traveltissues@protonmail.com>2019-09-05 17:52:52 +0100
commit5ee8bf84ecc5905de39391669f6503bad4d5c87d (patch)
tree575218a7c772237122ce21d468d8bc44ad5e4107
parent2138c4715c97cc8df223c0929e775f8affdabf3e (diff)
downloadbuildstream-5ee8bf84ecc5905de39391669f6503bad4d5c87d.tar.gz
workspace.py: fix _get_local_path
-rw-r--r--src/buildstream/plugins/sources/workspace.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/plugins/sources/workspace.py b/src/buildstream/plugins/sources/workspace.py
index 1a99e8a2e..ec3f2cf5b 100644
--- a/src/buildstream/plugins/sources/workspace.py
+++ b/src/buildstream/plugins/sources/workspace.py
@@ -118,8 +118,8 @@ class WorkspaceSource(Source):
reason='ensure-stage-dir-fail')
self.__source_digest = directory._get_digest()
- def _get_local_path(self):
- return self.fullpath
+ def _get_local_path(self) -> str:
+ return self.path
# Plugin entry point
def setup():