Merge pull request #124 from therunnergit/chown-local-user

Option to chown local user
This commit is contained in:
Viktor Vogel 2015-10-31 11:54:50 +01:00
commit 58bf6f8f11
2 changed files with 10 additions and 0 deletions

View File

@ -8,3 +8,6 @@ cmsPath = tests/joomla-cms3
; If you want to clone a different branch, you can set it here
branch = staging
; (Linux / Mac only) If you want to set a different owner for the CMS root folder, you can set it here.
localUser = www-data

View File

@ -191,6 +191,13 @@ class RoboFile extends \Robo\Tasks
}
$this->_copyDir('tests/cache', $this->cmsPath);
// Optionally change owner to fix permissions issues
if (!empty($this->configuration->localUser) && !$this->isWindows())
{
$this->_exec('chown -R ' . $this->configuration->localUser . ' ' . $this->cmsPath);
}
$this->say('Joomla CMS site created at ' . $this->cmsPath);
// Optionally uses Joomla default htaccess file. Used by TravisCI