This commit is contained in:
garronej
2023-01-08 14:57:18 +01:00
parent d4523bb1e6
commit 49b87777f9
3 changed files with 5 additions and 5 deletions

View File

@ -53,7 +53,7 @@ export function downloadAndUnzip(params: {
[extractDirPath]: false
});
fs.rmSync(extractDirPath, {recursive: true, force: true});
fs.rmSync(extractDirPath, { "recursive": true, "force": true });
fs.mkdirSync(extractDirPath);
@ -65,7 +65,7 @@ export function downloadAndUnzip(params: {
"cwd": extractDirPath
});
fs.rmSync(pathJoin(extractDirPath, zipFileBasename), {recursive: true, force: true});
fs.rmSync(pathJoin(extractDirPath, zipFileBasename), { "recursive": true, "force": true });
writeIsSuccessByExtractDirPath({
...isSuccessByExtractDirPath,