From 84d5fbcfe50ee719faa5e8156e317de4fce57cf3 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 2 Feb 2017 02:52:07 +0200 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20lock=20cache=20directory=20whil?= =?UTF-8?q?e=20cleaning?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platformio/app.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/platformio/app.py b/platformio/app.py index 4104dae4..e6cbc0b2 100644 --- a/platformio/app.py +++ b/platformio/app.py @@ -238,8 +238,6 @@ class ContentCache(object): def clean(self): if not self.cache_dir or not isdir(self.cache_dir): return - if not self._lock_dbindex(): - return util.rmtree_(self.cache_dir)