We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd6fe7 commit 81e578bCopy full SHA for 81e578b
src/scripts/builders/reference.ts
@@ -49,7 +49,7 @@ export const buildReference = async () => {
49
const existing = await fs.readdir(prefix)
50
for (const f of existing) {
51
if ((await fs.lstat(path.join(prefix, f))).isDirectory()) {
52
- await fs.rmdir(path.join(prefix, f), { recursive: true });
+ await fs.rm(path.join(prefix, f), { recursive: true });
53
}
54
55
0 commit comments