File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -425,7 +425,10 @@ async function finalizeExtensionActivation(): Promise<void> {
425425 const packageJson : any = util . getRawPackageJson ( ) ;
426426 let writePackageJson : boolean = false ;
427427 const packageJsonPath : string = util . getExtensionFilePath ( "package.json" ) ;
428- if ( packageJsonPath . includes ( ".vscode-insiders" ) || packageJsonPath . includes ( ".vscode-exploration" ) ) {
428+ if ( packageJsonPath . includes ( ".vscode-insiders" ) ||
429+ packageJsonPath . includes ( ".vscode-server-insiders" ) ||
430+ packageJsonPath . includes ( ".vscode-exploration" ) ||
431+ packageJsonPath . includes ( ".vscode-server-exploration" ) ) {
429432 if ( packageJson . contributes . configuration . properties [ 'C_Cpp.updateChannel' ] . default === 'Default' ) {
430433 packageJson . contributes . configuration . properties [ 'C_Cpp.updateChannel' ] . default = 'Insiders' ;
431434 writePackageJson = true ;
You can’t perform that action at this time.
0 commit comments