Welcome to mirror list, hosted at ThFree Co, Russian Federation.

updater.php - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c647968b499ecef96bd0452ff6679395479f913 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env php
<?php

require __DIR__ . '/vendor/autoload.php';

ini_set('display_errors', '0');
ini_set('log_errors', '1');
date_default_timezone_set('UTC');

$application = new NC\Updater\CommandApplication();
$application->run();