Dir need regen support
Publish PHP Package / docker (push) Successful in 7s
Details
Publish PHP Package / docker (push) Successful in 7s
Details
This commit is contained in:
parent
5b1a5ec442
commit
2e666d8b66
|
@ -170,14 +170,21 @@ function json_make_pretty(string $json) : string
|
|||
|
||||
function need_to_regen(string $file, array $deps, bool $debug = false) : bool
|
||||
{
|
||||
if(!is_file($file))
|
||||
if(is_file($file))
|
||||
{
|
||||
$fmtime = filemtime($file);
|
||||
}
|
||||
else if(is_dir($file))
|
||||
{
|
||||
$fmtime = filectime($file);
|
||||
}
|
||||
else
|
||||
{
|
||||
if($debug)
|
||||
echo "! $file\n";
|
||||
return true;
|
||||
}
|
||||
|
||||
$fmtime = filemtime($file);
|
||||
foreach($deps as $dep)
|
||||
{
|
||||
if($dep && is_file($dep) && (filemtime($dep) > $fmtime))
|
||||
|
|
Loading…
Reference in New Issue