test shell2

This commit is contained in:
aliaxander 2016-02-22 01:32:43 +03:00
parent 76b986a88a
commit defe8e1427

View file

@ -73,10 +73,8 @@ class Shell2 implements \PHPCI\Plugin
if (!defined('ENABLE_SHELL_PLUGIN') || !ENABLE_SHELL_PLUGIN) {
throw new \Exception(Lang::get('shell_not_enabled'));
}
$success = true;
$this->phpci->logExecOutput(true);
return $this->phpci->executeCommand($this->command);
$ignore='';
$success = $this->phpci->executeCommand($this->command . ' %s "%s"', $ignore, $this->phpci->buildPath);
return $success;
}
}