winget-cli

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

commit aa954a4b19b5bc38e950e8bdc7fe14c313eb70ab
parent db05660d55f4df442c8edbc3e869199078d20e3d
Author: Easton Pillay <easton@planeteaston.com>
Date:   Thu, 28 Oct 2021 18:02:51 -0500

CurrentLocalization is now populated for dependency manifests. (#1655)


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

diff --git a/src/AppInstallerCLICore/Workflows/DependencyNodeProcessor.cpp b/src/AppInstallerCLICore/Workflows/DependencyNodeProcessor.cpp @@ -65,6 +65,8 @@ namespace AppInstaller::CLI::Workflow } m_nodeManifest = m_nodePackageLatestVersion->GetManifest(); + m_nodeManifest.ApplyLocale(); + if (m_nodeManifest.Installers.empty()) { error << Resource::String::DependenciesFlowNoInstallerFound << " " << Utility::Normalize(m_nodeManifest.Id);