mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
Change fs.rmdir to fs.rm as it is deprecated
This commit is contained in:
parent
0ecaa2cbd7
commit
ed1f88a852
|
@ -41,7 +41,7 @@ function updateWiki(newVersion) {
|
|||
|
||||
function safeDelete(dir) {
|
||||
if (fs.existsSync(dir)) {
|
||||
fs.rmdirSync(dir, {
|
||||
fs.rm(dir, {
|
||||
recursive: true,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue