More debug

This commit is contained in:
wilsonge 2019-09-12 17:47:57 +01:00
parent f6835d457f
commit 5b6a45efeb
No known key found for this signature in database
GPG Key ID: EF81319318FC9D04
1 changed files with 10 additions and 2 deletions

View File

@ -429,8 +429,16 @@ class RoboFile extends Tasks
if (!file_exists(dirname($this->configuration->cmsPath)))
{
$this->say("Cms path written in local configuration does not exists or is not readable");
var_dump(sprintf('Path %s is unreadable', $this->configuration->cmsPath));die;
$this->say(
sprintf(
"Cms path %s written in local configuration does not exists or is not readable",
$this->configuration->cmsPath
)
);
var_dump(sprintf('Path %s is unreadable', $this->configuration->cmsPath));
var_dump(dirname($this->configuration->cmsPath));
var_dump(file_exists(dirname($this->configuration->cmsPath)));
die;
return 'tests/joomla';
}