winget-cli

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

commit 16de635071b70d567f61e058f36278edff484a6e
parent 7e548cbbeb446fac1072ba6b464a65d048751461
Author: Felipe Santos <felipecassiors@gmail.com>
Date:   Mon, 28 Feb 2022 20:21:53 -0300

Remove duplicated message about unknown versions (#1982)


Diffstat:
Msrc/AppInstallerCLICore/Workflows/UpdateFlow.cpp | 4----
1 file changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/AppInstallerCLICore/Workflows/UpdateFlow.cpp b/src/AppInstallerCLICore/Workflows/UpdateFlow.cpp @@ -195,9 +195,5 @@ namespace AppInstaller::CLI::Workflow APPINSTALLER_CLI_ERROR_UPDATE_ALL_HAS_FAILURE, { APPINSTALLER_CLI_ERROR_UPDATE_NOT_APPLICABLE }); } - if (unknownPackagesCount > 0 && !context.Args.Contains(Execution::Args::Type::IncludeUnknown)) - { - context.Reporter.Info() << unknownPackagesCount << " " << (unknownPackagesCount == 1 ? Resource::String::UpgradeUnknownCountSingle : Resource::String::UpgradeUnknownCount) << std::endl; - } } }