Skip to content

Commit

Permalink
Fix rmdirSync
Browse files Browse the repository at this point in the history
  • Loading branch information
auxten committed Dec 29, 2023
1 parent 39a43ac commit 25d31d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
}
}

Expand Down

0 comments on commit 25d31d3

Please sign in to comment.