mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
11 lines
275 B
PHP
11 lines
275 B
PHP
<?php
|
|
|
|
if (PHP_SAPI !== 'cli') {
|
|
die('This script must be run from the command line.');
|
|
}
|
|
|
|
const ROOT_PATH = __DIR__ . '/../..';
|
|
require ROOT_PATH . '/vendor/autoload.php';
|
|
|
|
$checksums = IntegrityChecker::generateChecksums();
|
|
IntegrityChecker::saveChecksums($checksums);
|