mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 16:31:53 +00:00
Replace flush.php with a shell script, to appease #192
Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
This commit is contained in:
parent
ff41146439
commit
cb5a742574
@ -1,30 +0,0 @@
|
|||||||
#!/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, $status);
|
|
||||||
echo "\n";
|
|
||||||
if ($status) exit($status);
|
|
||||||
}
|
|
||||||
|
|
||||||
$php = empty($_SERVER['argv'][1]) ? 'php' : $_SERVER['argv'][1];
|
|
||||||
|
|
||||||
e($php . ' generate-includes.php');
|
|
||||||
e($php . ' generate-schema-cache.php');
|
|
||||||
e($php . ' flush-definition-cache.php');
|
|
||||||
e($php . ' generate-standalone.php');
|
|
||||||
e($php . ' config-scanner.php');
|
|
||||||
|
|
||||||
// vim: et sw=4 sts=4
|
|
8
maintenance/flush.sh
Executable file
8
maintenance/flush.sh
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -ex
|
||||||
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
||||||
|
php "$DIR/generate-includes.php"
|
||||||
|
php "$DIR/generate-schema-cache.php"
|
||||||
|
php "$DIR/flush-definition-cache.php"
|
||||||
|
php "$DIR/generate-standalone.php"
|
||||||
|
php "$DIR/config-scanner.php"
|
Loading…
Reference in New Issue
Block a user