Merge branch 'louislam:master' into master

This commit is contained in:
Unai Tolosa Pontesta 2022-06-23 23:12:54 +02:00 committed by GitHub
commit f8def5aa6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ function updateWiki(newVersion) {
function safeDelete(dir) {
if (fs.existsSync(dir)) {
fs.rmdirSync(dir, {
fs.rm(dir, {
recursive: true,
});
}