mirror of
https://github.com/boostorg/boost-tasks.git
synced 2026-02-01 08:22:13 +00:00
14 lines
168 B
PHP
14 lines
168 B
PHP
<?php
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
$console = new BoostUpdateApplication();
|
|
$r = $console->run();
|
|
|
|
if ($r) {
|
|
exit($r);
|
|
}
|
|
else if (Log::$error) {
|
|
exit(1);
|
|
}
|