mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 23:51:01 -07:00
fix: tmpdir cleanup removes contained files (#8826)
This commit is contained in:
parent
24a10451c2
commit
537e3176ea
1 changed files with 9 additions and 4 deletions
|
@ -11,9 +11,14 @@ export function createTemp(): Promise<[string, () => void]> {
|
||||||
|
|
||||||
export function createTempDir(): Promise<[string, () => void]> {
|
export function createTempDir(): Promise<[string, () => void]> {
|
||||||
return new Promise<[string, () => void]>((res, rej) => {
|
return new Promise<[string, () => void]>((res, rej) => {
|
||||||
tmp.dir((e, path, cleanup) => {
|
tmp.dir(
|
||||||
if (e) return rej(e);
|
{
|
||||||
res([path, cleanup]);
|
unsafeCleanup: true,
|
||||||
});
|
},
|
||||||
|
(e, path, cleanup) => {
|
||||||
|
if (e) return rej(e);
|
||||||
|
res([path, cleanup]);
|
||||||
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue