Skip to content

Commit

Permalink
chore(NA): run del with force option on ref_output_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Mar 10, 2021
1 parent 50dac66 commit 045d0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev/typescript/ref_output_cache/ref_output_cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export class RefOutputCache {
}

this.log.debug(`[${relative}] clearing outDir and replacing with cache`);
await del(outDir);
await del(outDir, { force: true });
await unzip(Path.resolve(tmpDir, cacheName), outDir);
await Fs.writeFile(Path.resolve(outDir, OUTDIR_MERGE_BASE_FILENAME), this.mergeBase);
});
Expand Down

0 comments on commit 045d0d7

Please sign in to comment.