diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2018-12-13 10:12:12 +0000 |
---|---|---|
committer | Benjamin Schubert <ben.c.schubert@gmail.com> | 2018-12-13 10:12:12 +0000 |
commit | be6fc831ccd6eec6f7ef54b87a25f6d95c841f8d (patch) | |
tree | 9e82bea81f01b4ea0998ae60b78924947c8e44f2 /buildstream/_platform/linux.py | |
parent | 58b38f32f304623b6ed5544fedca4b4d56fdbad8 (diff) | |
download | buildstream-bschubert/docker-sandbox.tar.gz |
fixup! First draft for docker sandboxbschubert/docker-sandbox
Diffstat (limited to 'buildstream/_platform/linux.py')
-rw-r--r-- | buildstream/_platform/linux.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/buildstream/_platform/linux.py b/buildstream/_platform/linux.py index ac2488095..e4bdb418f 100644 --- a/buildstream/_platform/linux.py +++ b/buildstream/_platform/linux.py @@ -67,10 +67,10 @@ class Linux(Platform): # the normal setup process from ..sandbox._sandboxdocker import SandboxDocker return SandboxDocker(*args, **kwargs) - if not self._local_sandbox_available: - return self._create_dummy_sandbox(*args, **kwargs) - else: - return self._create_bwrap_sandbox(*args, **kwargs) + # if not self._local_sandbox_available: + # return self._create_dummy_sandbox(*args, **kwargs) + # else: + # return self._create_bwrap_sandbox(*args, **kwargs) def check_sandbox_config(self, config): if not self._local_sandbox_available: |