Fix parsing function call arguments when arg strings contain commas

This commit is contained in:
Tautvidas Sipavičius
2016-12-14 17:32:19 +02:00
parent 61ab583030
commit f4b7acca1e
4 changed files with 12 additions and 15 deletions

View File

@ -99,15 +99,8 @@ class RoboFile extends \Robo\Tasks {
function makepot() {
return $this->_exec('./node_modules/.bin/grunt makepot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
);
}
function pushpot() {
return $this->_exec('./node_modules/.bin/grunt pushpot'.
' --gruntfile '.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path '.__DIR__
' --gruntfile='.__DIR__.'/tasks/makepot/makepot.js'.
' --base_path='.__DIR__
);
}