diff --git a/index.ts b/index.ts index a37ef4f..b6ca1aa 100644 --- a/index.ts +++ b/index.ts @@ -49,7 +49,7 @@ class Session { // Cleanup method to delete the temporary directory cleanup() { - rmdirSync(this.path, { recursive: true, force: true }); + rmdirSync(this.path, { recursive: true }); } }