aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_portsdiff.cpp
diff options
context:
space:
mode:
authorDaniel Shaw <t-dansha@microsoft.com>2017-06-19 15:06:15 -0700
committerRobert Schumacher <roschuma@microsoft.com>2017-06-19 15:06:15 -0700
commitbca0988023a8c7bfc896d0f5787eb02e74c6fb59 (patch)
tree081da47877ef653b27a8a77a33c76575b071de49 /toolsrc/src/commands_portsdiff.cpp
parent73a0161bb13977309209a89ad6328a97b11d28ab (diff)
downloadvcpkg-bca0988023a8c7bfc896d0f5787eb02e74c6fb59.tar.gz
vcpkg-bca0988023a8c7bfc896d0f5787eb02e74c6fb59.zip
[vcpkg] feature packages initial parsing
Diffstat (limited to 'toolsrc/src/commands_portsdiff.cpp')
-rw-r--r--toolsrc/src/commands_portsdiff.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_portsdiff.cpp b/toolsrc/src/commands_portsdiff.cpp
index a614d654e..e872c394d 100644
--- a/toolsrc/src/commands_portsdiff.cpp
+++ b/toolsrc/src/commands_portsdiff.cpp
@@ -97,10 +97,10 @@ namespace vcpkg::Commands::PortsDiff
L".vcpkg-root",
git_exe.native());
System::cmd_execute_clean(cmd);
- const std::vector<SourceParagraph> source_paragraphs =
+ const std::vector<SourceControlFile> source_control_files =
Paragraphs::load_all_ports(paths.get_filesystem(), temp_checkout_path / ports_dir_name_as_string);
const std::map<std::string, VersionT> names_and_versions =
- Paragraphs::extract_port_names_and_versions(source_paragraphs);
+ Paragraphs::extract_port_names_and_versions(getSourceParagraphs(source_control_files));
fs.remove_all(temp_checkout_path, ec);
return names_and_versions;
}