From 811b19e5eef5be34d30d8a9724800e12ebe6e233 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 27 Mar 2014 20:43:55 +0000 Subject: Ignore errors when removing DATADIR as well --- yarn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yarn b/yarn index c34ccbb..0896f8d 100755 --- a/yarn +++ b/yarn @@ -351,7 +351,7 @@ class YarnRunner(cliapp.Application): break if not self.settings['snapshot']: - shutil.rmtree(tempdir) + shutil.rmtree(tempdir, ignore_errors=True) self.remember_scenario_timing(time.time() - started) return ok -- cgit v1.2.1