Skip to content

Commit e9c08fe

Browse files
committed
PR feedback
1 parent 800d6bf commit e9c08fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/platform/update/electron-main/updateService.win32.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,14 +496,14 @@ export class Win32UpdateService extends AbstractUpdateService implements IRelaun
496496
this.logService.trace('update#quitAndInstall(): running raw#quitAndInstall()');
497497

498498
if (this.availableUpdate.updateFilePath && this.availableUpdate.updateProcess?.exitCode === null) {
499-
// Background installer is still alive signal it to proceed by deleting the flag file it is waiting on.
499+
// Background installer is still alive; signal it to proceed by deleting the flag file it is waiting on.
500500
try {
501501
unlinkSync(this.availableUpdate.updateFilePath);
502502
} catch {
503503
// ignore
504504
}
505505
} else {
506-
// No live background installerlaunch the setup directly with approprate flags based on config.
506+
// No live background installer; launch the setup directly with appropriate flags based on config.
507507
const installerArgs = [
508508
this.isFastUpdatesEnabled() ? '/verysilent' : '/silent',
509509
'/log',

0 commit comments

Comments
 (0)