From 826c73643966eeeb3d73d784bed68801672acd27 Mon Sep 17 00:00:00 2001 From: John McPherson Date: Wed, 17 Mar 2021 12:27:13 -0700 Subject: [PATCH] Fix double Found output --- src/AppInstallerCLICore/Commands/ShowCommand.cpp | 1 + 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 index 632706c88a..8fbd4f5b24 100644 --- 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 index 4cc06f84a2..3eab876c0b 100644 --- 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; } }