From 5046a1f42414fd4ead950ff8b9f46dfe8a059eb7 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Wed, 26 Mar 2014 15:03:57 +0100 Subject: [PATCH] remove web/cache on clear:cache command --- core/lib/Thelia/Command/CacheClear.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/lib/Thelia/Command/CacheClear.php b/core/lib/Thelia/Command/CacheClear.php index f8a6063c8..4795cc68a 100644 --- a/core/lib/Thelia/Command/CacheClear.php +++ b/core/lib/Thelia/Command/CacheClear.php @@ -62,6 +62,7 @@ class CacheClear extends ContainerAwareCommand $cacheDir = $this->getContainer()->getParameter("kernel.cache_dir"); $this->clearCache($cacheDir, $output); + $this->clearCache(THELIA_WEB_DIR . "cache", $output); if (!$input->getOption("without-assets")) { $this->clearCache(THELIA_WEB_DIR . "assets", $output); }