1
0
Fork 0

Warn if cache directory cannot be created

closes #1161
pull/4357/head
Rob Bast 2015-08-14 13:13:10 +02:00
parent 6c7e4a671b
commit 61dc752c78
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class Cache
if (!is_dir($this->root)) {
if (!@mkdir($this->root, 0777, true)) {
$this->io->writeError('<warning>Cannot create cache directory ' . $this->root . ', proceeding without cache</warning>');
$this->enabled = false;
}
}