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 {
173
173
name : "rust-analyzer" ,
174
174
owner : "rust-analyzer"
175
175
}
176
- }
176
+ } ;
177
177
}
178
178
179
179
get nightlyVsixSource ( ) : ArtifactSource . GithubRelease {
@@ -240,7 +240,7 @@ export class StringStorage {
240
240
constructor (
241
241
private readonly key : string ,
242
242
private readonly storage : vscode . Memento
243
- ) { }
243
+ ) { }
244
244
245
245
get ( ) : null | string {
246
246
const tag = this . storage . get ( this . key , null ) ;
@@ -257,7 +257,7 @@ export class DateStorage {
257
257
constructor (
258
258
private readonly key : string ,
259
259
private readonly storage : vscode . Memento
260
- ) { }
260
+ ) { }
261
261
262
262
get ( ) : null | Date {
263
263
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
110
110
111
111
const vsixPath = path . join ( vsixSource . dir , vsixSource . file ) ;
112
112
113
- await vscodeInstallExtensionFromVsix ( vsixPath )
113
+ await vscodeInstallExtensionFromVsix ( vsixPath ) ;
114
114
await config . installedNightlyExtensionReleaseDate . set ( releaseInfo . releaseDate ) ;
115
115
await fs . unlink ( vsixPath ) ;
116
116
You can’t perform that action at this time.
0 commit comments