test shell2

This commit is contained in:
aliaxander 2016-02-22 01:50:04 +03:00
parent 29196a8219
commit d29b9dc796

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);
$success = exec("php -v");
return $success;
}
}