bundlewrap/bundles/nextcloud/files/upgrade_status.php
2022-02-23 18:33:25 +01:00

9 lines
118 B
PHP

<?php
require_once __DIR__ . '/lib/base.php';
if (\OCP\Util::needUpgrade()) {
exit(99);
} else {
exit(0);
}