commit 146205eb1183e1c38ecf313f4a04451485e909b5 parent db37875c50f759485cfb63f1969e95b3e6e63d3a Author: JohnMcPMS <johnmcp@microsoft.com> Date: Wed, 17 Mar 2021 16:00:43 -0700 Fix double Found output (#802) Diffstat:
| M | src/AppInstallerCLICore/Commands/ShowCommand.cpp | | | 1 | + |
| M | src/AppInstallerCLICore/Workflows/WorkflowBase.cpp | | | 4 | +--- |
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/AppInstallerCLICore/Commands/ShowCommand.cpp b/src/AppInstallerCLICore/Commands/ShowCommand.cpp @@ -71,6 +71,7 @@ namespace AppInstaller::CLI { context << Workflow::GetManifest << + Workflow::ReportManifestIdentity << Workflow::SelectInstaller << Workflow::ShowManifestInfo; } diff --git a/src/AppInstallerCLICore/Workflows/WorkflowBase.cpp b/src/AppInstallerCLICore/Workflows/WorkflowBase.cpp @@ -598,8 +598,7 @@ namespace AppInstaller::CLI::Workflow if (context.Args.Contains(Execution::Args::Type::Manifest)) { context << - GetManifestFromArg << - ReportManifestIdentity; + GetManifestFromArg; } else { @@ -607,7 +606,6 @@ namespace AppInstaller::CLI::Workflow OpenSource << SearchSourceForSingle << EnsureOneMatchFromSearchResult(false) << - ReportPackageIdentity << GetManifestFromPackage; } }