fix project not getting updated after schema cmopare (#18850)

This commit is contained in:
Kim Santiago
2022-03-29 11:55:12 -07:00
committed by GitHub
parent b51387bb46
commit 8537a30996
2 changed files with 2 additions and 2 deletions

View File

@@ -563,7 +563,7 @@ export class ProjectsController {
const result: mssql.SchemaComparePublishProjectResult = await service.schemaComparePublishProjectChanges(operationId, projectPath, fs, utils.getAzdataApi()!.TaskExecutionMode.execute);
if (result.errorMessage === '') {
if (!result.errorMessage) {
const project = await Project.openProject(projectFilePath);
let toAdd: vscode.Uri[] = [];