mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-23 08:51:53 +00:00
24 lines
436 B
PHP
24 lines
436 B
PHP
|
#!/usr/bin/php
|
||
|
<?php
|
||
|
|
||
|
chdir(dirname(__FILE__));
|
||
|
require_once 'common.php';
|
||
|
assertCli();
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Runs all generation/flush cache scripts to ensure that somewhat volatile
|
||
|
* generated files are up-to-date.
|
||
|
*/
|
||
|
|
||
|
function e($cmd) {
|
||
|
echo "\$ $cmd\n";
|
||
|
passthru($cmd);
|
||
|
echo "\n";
|
||
|
}
|
||
|
|
||
|
e('php flush-definition-cache.php');
|
||
|
e('php generate-includes.php');
|
||
|
e('php generate-schema-cache.php');
|
||
|
e('php generate-standalone.php');
|