This commit is contained in:
Dax Raad 2025-12-09 19:53:50 -05:00
parent 63d9656ad8
commit cb188f907f

View file

@ -25,7 +25,7 @@ export async function tmpdir<T>(options?: TmpDirOptions<T>) {
const result = {
[Symbol.asyncDispose]: async () => {
await options?.dispose?.(dirpath)
await fs.rm(dirpath, { recursive: true, force: true })
// await fs.rm(dirpath, { recursive: true, force: true })
},
path: realpath,
extra: extra as T,