Skip to content

Commit

Permalink
Fix lslib cleanup code
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-lenz committed Sep 6, 2018
1 parent 7304ff5 commit 523c6f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/utils/LSLib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default class LSLib {
async clearInstallPath(path: string): Promise<boolean> {
const etag = await this.tryReadETag(path);
if (etag) {
rimraf.sync(`${path}${sep}**`);
rimraf.sync(`${path}${sep}*`);
return true;
}

Expand Down

0 comments on commit 523c6f9

Please sign in to comment.