We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cbb41c9 + e42f46e commit 5f5aa1eCopy full SHA for 5f5aa1e
src/diff-client.ts
@@ -362,7 +362,7 @@ export class DiffClient {
362
// delete the tempRhsRoot if used
363
if (this.tempRhsRoot) {
364
console.warn(`WARN: Cleaning up temporary folder '${this.tempRhsRoot}'`);
365
- fs.rmdirSync(this.tempRhsRoot, { recursive: true });
+ fs.rmSync(this.tempRhsRoot, { recursive: true });
366
}
367
368
// create inverse files that show only the stuff that has been pruned
0 commit comments