fix missing file close
Release / release (push) Successful in 23s

This commit is contained in:
2026-02-15 18:48:28 -08:00
parent 65e8e64079
commit a1838bc153
+1
View File
@@ -39,6 +39,7 @@ export default class NodeFileSystemWritableFileStream extends WritableStream imp
}
const file = await asyncfs.open(this.#name,'r+')
await file.write((wdata as Uint8Array), null, wsize, this.#seek_position)
await file.close()
this.#seek_position = pseek_position
}
}