summaryrefslogtreecommitdiff
path: root/buildstream/_platform/unix.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/_platform/unix.py')
-rw-r--r--buildstream/_platform/unix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_platform/unix.py b/buildstream/_platform/unix.py
index 8b1d2ece7..be4c129d3 100644
--- a/buildstream/_platform/unix.py
+++ b/buildstream/_platform/unix.py
@@ -19,7 +19,7 @@
import os
-from .._artifactcache.tarcache import TarCache
+from .._artifactcache.cascache import CASCache
from .._exceptions import PlatformError
from ..sandbox import SandboxChroot
@@ -31,7 +31,7 @@ class Unix(Platform):
def __init__(self, context, project):
super().__init__(context, project)
- self._artifact_cache = TarCache(context)
+ self._artifact_cache = CASCache(context)
# Not necessarily 100% reliable, but we want to fail early.
if os.geteuid() != 0: