fix(support): Allow temp dir which do not have a parent folder (#20440)

This commit is contained in:
kkb912002
2024-08-05 17:30:25 +09:00
committed by GitHub
parent 0ffca811ce
commit 8a307a078b
+1 -1
View File
@@ -31,7 +31,7 @@ async function tempDir() {
);
// creates a temp directory using the date and a random string
await fs.mkdir(filePath);
await fs.mkdir(filePath, {recursive: true});
return filePath;
}