From 3fcbefb18b61fa7202f31dbcfec21aa0b806390e Mon Sep 17 00:00:00 2001 From: Saophalkun Ponlu Date: Thu, 29 Apr 2010 01:18:05 +0000 Subject: [PATCH] ENHANCEMENT: create cache directory when it does not exist before running the cache build test git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@103708 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tasks/RebuildStaticCacheTask.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tasks/RebuildStaticCacheTask.php b/tasks/RebuildStaticCacheTask.php index 11018544..486ac729 100644 --- a/tasks/RebuildStaticCacheTask.php +++ b/tasks/RebuildStaticCacheTask.php @@ -46,6 +46,10 @@ class RebuildStaticCacheTask extends Controller { $page = singleton('Page'); $cacheBaseDir = $page->getDestDir(); + if(!file_exists($cacheBaseDir)) { + mkdir($cacheBaseDir); + } + if (file_exists($cacheBaseDir.'/lock') && !isset($_REQUEST['force'])) die("There already appears to be a publishing queue running. You can skip warning this by adding ?/&force to the URL."); touch($cacheBaseDir.'/lock');