Switching executeCommand() to use sprintf for parameters, and all the plugins to pass params separately. See #12, closes #24

This commit is contained in:
Dan Cryer 2013-05-16 00:17:57 +01:00
commit a5a03e1f07
8 changed files with 19 additions and 13 deletions

View file

@ -44,7 +44,7 @@ class LocalBuild extends Build
}
}
else {
$builder->executeCommand(sprintf("cp -Rf %s %s/", $reference, $buildPath));
$builder->executeCommand('cp -Rf "%s" "%s/"', $reference, $buildPath);
}
return true;