commit fd4b14cf48c9f9d0f76a2767de460c78027575c8
parent 9f7d540722740625b2b85c2ec65888fca538ee36
Author: Easton Pillay <easton@planeteaston.com>
Date: Mon, 27 Sep 2021 23:32:54 -0500
Made it so the package name shows during InstallMultiplePackages. (#1517)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/AppInstallerCLICore/Workflows/InstallFlow.cpp b/src/AppInstallerCLICore/Workflows/InstallFlow.cpp
@@ -664,7 +664,7 @@ namespace AppInstaller::CLI::Workflow
// Extract the data needed for installing
installContext.Add<Execution::Data::PackageVersion>(package.PackageVersion);
- installContext.Add<Execution::Data::Manifest>(package.PackageVersion->GetManifest());
+ installContext.Add<Execution::Data::Manifest>(package.Manifest);
installContext.Add<Execution::Data::InstalledPackageVersion>(package.InstalledPackageVersion);
installContext.Add<Execution::Data::Installer>(package.Installer);