File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/vs/platform/update/electron-main Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 installer — launch 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' ,
You can’t perform that action at this time.
0 commit comments