New feature. Copy application from remote source; e.g.: GIT repo.

This commit is contained in:
Andrs Montaez
2012-02-05 00:42:54 -02:00
parent 38711cbac2
commit 0c2ee3c45f
9 changed files with 105 additions and 7 deletions
+4 -2
View File
@@ -85,8 +85,10 @@ class Mage_Console
self::log('---- Executing: $ ' . $command);
ob_start();
system($command . ' 2>&1', $return);
$log = ob_get_clean();
$return = 1;
$log = array();
exec($command . ' 2>&1', $log, $return);
$log = implode(PHP_EOL, $log);
if (!$return) {
$output = trim($log);