From 43c2f9376bd04a97293b207f66572a8fa4ac83a8 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Mon, 28 Feb 2022 12:04:48 -0300 Subject: [PATCH] Remove duplicated message about unknown versions --- src/AppInstallerCLICore/Workflows/UpdateFlow.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/AppInstallerCLICore/Workflows/UpdateFlow.cpp b/src/AppInstallerCLICore/Workflows/UpdateFlow.cpp index 169b49b338..b1eadd563e 100644 --- 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; - } } }