Command to poll github for new commits
This commit is contained in:
parent
8c127d692c
commit
4d3372af88
3 changed files with 146 additions and 0 deletions
2
console
Executable file → Normal file
2
console
Executable file → Normal file
|
|
@ -17,6 +17,7 @@ use PHPCI\Command\GenerateCommand;
|
|||
use PHPCI\Command\UpdateCommand;
|
||||
use PHPCI\Command\InstallCommand;
|
||||
use PHPCI\Command\DaemonCommand;
|
||||
use PHPCI\Command\PollCommand;
|
||||
use Symfony\Component\Console\Application;
|
||||
|
||||
$loggerConfig = new \PHPCI\Helper\LoggerConfig(__DIR__ . "/loggerconfig.php");
|
||||
|
|
@ -28,5 +29,6 @@ $application->add(new InstallCommand);
|
|||
$application->add(new UpdateCommand($loggerConfig->GetFor('UpdateCommand')));
|
||||
$application->add(new GenerateCommand);
|
||||
$application->add(new DaemonCommand($loggerConfig->GetFor('DaemonCommand')));
|
||||
$application->add(new PollCommand($loggerConfig->GetFor('PollCommand')));
|
||||
|
||||
$application->run();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue