mirror of https://github.com/microsoft/vscode.git
[easy] Fix a typo for "synchronizing" in log string (#150236)
* [easy] Fix a typo for "synchronizing" in log string * Include artifacts from yarn build compile
This commit is contained in:
parent
ac0a282547
commit
397fa12a6c
|
@ -97,7 +97,7 @@ function writeControlFile(control) {
|
|||
fs.writeFileSync(controlFilePath, JSON.stringify(control, null, 2));
|
||||
}
|
||||
function getBuiltInExtensions() {
|
||||
log('Syncronizing built-in extensions...');
|
||||
log('Synchronizing built-in extensions...');
|
||||
log(`You can manage built-in extensions with the ${ansiColors.cyan('--builtin')} flag`);
|
||||
const control = readControlFile();
|
||||
const streams = [];
|
||||
|
|
|
@ -136,7 +136,7 @@ function writeControlFile(control: IControlFile): void {
|
|||
}
|
||||
|
||||
export function getBuiltInExtensions(): Promise<void> {
|
||||
log('Syncronizing built-in extensions...');
|
||||
log('Synchronizing built-in extensions...');
|
||||
log(`You can manage built-in extensions with the ${ansiColors.cyan('--builtin')} flag`);
|
||||
|
||||
const control = readControlFile();
|
||||
|
|
Loading…
Reference in New Issue