Fixed ilegal usage of sed

This commit is contained in:
javier gomez 2015-10-31 12:37:27 +01:00
parent d4b80d8ae8
commit ab8116ccc3
1 changed files with 1 additions and 1 deletions

View File

@ -204,7 +204,7 @@ class RoboFile extends \Robo\Tasks
if ($use_htaccess == true)
{
$this->_copy('./tests/joomla-cms3/htaccess.txt', './tests/joomla-cms3/.htaccess');
$this->_exec('sed -e "s,# RewriteBase /,RewriteBase /tests/joomla-cms3/,g" --in-place tests/joomla-cms3/.htaccess');
$this->_exec('sed -e "s,# RewriteBase /,RewriteBase /tests/joomla-cms3/,g" -in-place tests/joomla-cms3/.htaccess');
}
}