chore: fix typo in extensionDownloader

This commit is contained in:
Joe Previte 2021-04-02 16:30:57 -07:00
parent 03f730989d
commit f241e38907
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ export class ExtensionsDownloader extends Disposable {
private async cleanUp(): Promise<void> { private async cleanUp(): Promise<void> {
try { try {
if (!(await this.fileService.exists(this.extensionsDownloadDir))) { if (!(await this.fileService.exists(this.extensionsDownloadDir))) {
this.logService.trace('Extension VSIX downlads cache dir does not exist'); this.logService.trace('Extension VSIX downloads cache dir does not exist');
return; return;
} }
const folderStat = await this.fileService.resolve(this.extensionsDownloadDir, { resolveMetadata: true }); const folderStat = await this.fileService.resolve(this.extensionsDownloadDir, { resolveMetadata: true });