Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit d88ca07

Browse files
committed
Release 0.9.0
1 parent df5e712 commit d88ca07

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

applications/server/src/util.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ export const withTempDir = async <T>(fn: (dir: string) => T) => {
1515
try {
1616
return await fn(dir);
1717
} finally {
18-
await fs.rm(dir, { recursive: true, force: true });
18+
setTimeout(() => {
19+
fs.rm(dir, { recursive: true, force: true });
20+
}, 5000);
1921
}
2022
};
2123

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "redeye",
33
"productName": "RedEye",
4-
"version": "0.8.5",
4+
"version": "0.9.0",
55
"private": true,
66
"workspaces": [
77
"applications/**",

0 commit comments

Comments
 (0)