Commit 2a7dedc4 authored by nanahira's avatar nanahira

fix

parent 9dbb5aa3
Pipeline #9586 failed with stages
in 2 minutes and 50 seconds
...@@ -16,7 +16,7 @@ async function handlePackageEntry(packageName: string, versionString: string) { ...@@ -16,7 +16,7 @@ async function handlePackageEntry(packageName: string, versionString: string) {
try { try {
await fs.promises.access(path); await fs.promises.access(path);
console.log(`Removing ${path} ...`); console.log(`Removing ${path} ...`);
await fs.promises.rmdir(path, { recursive: true }); await fs.promises.rm(path, { recursive: true });
} catch (e) {} } catch (e) {}
}), }),
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment