test shell2

This commit is contained in:
aliaxander 2016-02-22 01:48:04 +03:00
parent 32f1644f90
commit 29196a8219

View file

@ -73,7 +73,7 @@ class Shell2 implements \PHPCI\Plugin
if (!defined('ENABLE_SHELL_PLUGIN') || !ENABLE_SHELL_PLUGIN) {
throw new \Exception(Lang::get('shell_not_enabled'));
}
$success = exec($this->command." && php -v");
$success = exec($this->command);
return $success;
}
}