forked from FoundKeyGang/FoundKey
fix: tmpdir cleanup removes contained files (#8826)
This commit is contained in:
parent
4edb67667a
commit
95d59b3947
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(
|
||||||
|
{
|
||||||
|
unsafeCleanup: true,
|
||||||
|
},
|
||||||
|
(e, path, cleanup) => {
|
||||||
if (e) return rej(e);
|
if (e) return rej(e);
|
||||||
res([path, cleanup]);
|
res([path, cleanup]);
|
||||||
});
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue