diff --git a/src/Composer/Cache.php b/src/Composer/Cache.php index 746a31aec..22e744fd2 100644 --- a/src/Composer/Cache.php +++ b/src/Composer/Cache.php @@ -45,6 +45,7 @@ class Cache if (!is_dir($this->root)) { if (!@mkdir($this->root, 0777, true)) { + $this->io->writeError('Cannot create cache directory ' . $this->root . ', proceeding without cache'); $this->enabled = false; } }