mirror of
https://github.com/Metastem/wikiless
synced 2024-12-06 19:16:58 +01:00
refactor(cache_control): replace fs.rmdir() with fs.rm()
- to be deprecated https://nodejs.org/api/deprecations.html#DEP0147
This commit is contained in:
@@ -5,7 +5,7 @@ module.exports.removeCacheFiles = function() {
|
||||
const fs = require('fs');
|
||||
const wiki_files = './media/wikipedia/';
|
||||
|
||||
fs.rmdir(wiki_files, { recursive: true, force: true }, () => {
|
||||
fs.rm(wiki_files, { recursive: true, force: true }, () => {
|
||||
console.log('Cleared cached static media files. You can turn this off by setting the config.cache_control to false.');
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user