winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5c2ff990d93536bcc0a0db25abc0d3e9ec6900aa
parent 662842c8cf9012eae840ab94c741f046e0b20526
Author: JohnMcPMS <johnmcp@microsoft.com>
Date:   Wed, 13 Jul 2022 13:48:17 -0700

Don't fail fast (#2335)


Diffstat:
Msrc/AppInstallerRepositoryCore/Microsoft/Schema/1_4/DependenciesTable.cpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/AppInstallerRepositoryCore/Microsoft/Schema/1_4/DependenciesTable.cpp b/src/AppInstallerRepositoryCore/Microsoft/Schema/1_4/DependenciesTable.cpp @@ -116,7 +116,7 @@ namespace AppInstaller::Repository::Microsoft::Schema::V1_4 deleteStmt.Reset(); deleteStmt.Bind(1, row.m_packageRowId); deleteStmt.Bind(2, row.m_manifestRowId); - deleteStmt.Execute(true); + deleteStmt.Execute(); tableUpdated = true; } @@ -155,7 +155,7 @@ namespace AppInstaller::Repository::Microsoft::Schema::V1_4 insert.Bind(3, dep.m_packageRowId); - insert.Execute(true); + insert.Execute(); tableUpdated = true; }