File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ export class Config {
173173 name : "rust-analyzer" ,
174174 owner : "rust-analyzer"
175175 }
176- }
176+ } ;
177177 }
178178
179179 get nightlyVsixSource ( ) : ArtifactSource . GithubRelease {
@@ -240,7 +240,7 @@ export class StringStorage {
240240 constructor (
241241 private readonly key : string ,
242242 private readonly storage : vscode . Memento
243- ) { }
243+ ) { }
244244
245245 get ( ) : null | string {
246246 const tag = this . storage . get ( this . key , null ) ;
@@ -257,7 +257,7 @@ export class DateStorage {
257257 constructor (
258258 private readonly key : string ,
259259 private readonly storage : vscode . Memento
260- ) { }
260+ ) { }
261261
262262 get ( ) : null | Date {
263263 const date = this . storage . get ( this . key , null ) ;
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ const tryDownloadNightlyExtension = notReentrant(async function tryDownloadNight
110110
111111 const vsixPath = path . join ( vsixSource . dir , vsixSource . file ) ;
112112
113- await vscodeInstallExtensionFromVsix ( vsixPath )
113+ await vscodeInstallExtensionFromVsix ( vsixPath ) ;
114114 await config . installedNightlyExtensionReleaseDate . set ( releaseInfo . releaseDate ) ;
115115 await fs . unlink ( vsixPath ) ;
116116
You can’t perform that action at this time.
0 commit comments