30
1
mirror of https://github.com/joomla-extensions/weblinks.git synced 2024-06-01 22:10:50 +00:00

Fixed caching issue with folder not deleted before new clone

This commit is contained in:
Yves Hoppe 2015-11-02 12:11:36 +01:00
parent 7c13b8f488
commit 73230a4543

View File

@ -274,6 +274,11 @@ class RoboFile extends \Robo\Tasks
// Caching cloned installations locally
if (!is_dir('tests/cache') || (time() - filemtime('tests/cache') > 60 * 60 * 24))
{
if (file_exists('tests/cache'))
{
$this->taskDeleteDir('tests/cache')->run();
}
$this->_exec($this->buildGitCloneCommand());
}