summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-09 20:21:48 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-09 20:24:34 +0900
commit9e74988e0c5b22d5073c1436ca1648d28f2cac26 (patch)
treeb1a6e94de5a38322fb6d6c5062485ef9e96e963d
parent67d22d7696d42ef86bac3b3a1bc18e13ffb912a8 (diff)
downloadbuildstream-9e74988e0c5b22d5073c1436ca1648d28f2cac26.tar.gz
_workspaces.py: Fix cache key calculation regression
This was regressed in the refactor done in commit f761140f
-rw-r--r--buildstream/_workspaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_workspaces.py b/buildstream/_workspaces.py
index 127d2a66e..7c8c516ad 100644
--- a/buildstream/_workspaces.py
+++ b/buildstream/_workspaces.py
@@ -174,7 +174,7 @@ class Workspace():
else:
filelist = [(self.path, fullpath)]
- self.__key = [(relpath, unique_key(self.path)) for relpath, fullpath in filelist]
+ self.__key = [(relpath, unique_key(fullpath)) for relpath, fullpath in filelist]
return self.__key