Skip to content

Commit 25d31d3

Browse files
committedDec 29, 2023
Fix rmdirSync
1 parent 39a43ac commit 25d31d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Session {
4949

5050
// Cleanup method to delete the temporary directory
5151
cleanup() {
52-
rmdirSync(this.path, { recursive: true, force: true });
52+
rmdirSync(this.path, { recursive: true });
5353
}
5454
}
5555

0 commit comments

Comments
 (0)
Please sign in to comment.