mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-12 01:48:48 +00:00
[FileCache] Do not delete .gitkeep
This commit reduces the chance of accidentally removing the cache folder from repository.
This commit is contained in:
parent
790bd17d41
commit
1d26c7f1c3
@ -39,7 +39,7 @@ class FileCache implements CacheInterface {
|
|||||||
);
|
);
|
||||||
|
|
||||||
foreach($cacheIterator as $cacheFile){
|
foreach($cacheIterator as $cacheFile){
|
||||||
if(in_array($cacheFile->getBasename(), array('.', '..')))
|
if(in_array($cacheFile->getBasename(), array('.', '..', '.gitkeep')))
|
||||||
continue;
|
continue;
|
||||||
elseif($cacheFile->isFile()){
|
elseif($cacheFile->isFile()){
|
||||||
if(filemtime($cacheFile->getPathname()) < time() - $duration)
|
if(filemtime($cacheFile->getPathname()) < time() - $duration)
|
||||||
|
Loading…
Reference in New Issue
Block a user