From bd01f8ce83a0f4fc1963471623971d55d7460972 Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Wed, 12 Apr 2017 23:15:02 -0700 Subject: get_files_recursive()/get_files_non_recursive() --- toolsrc/src/commands_cache.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolsrc/src/commands_cache.cpp') diff --git a/toolsrc/src/commands_cache.cpp b/toolsrc/src/commands_cache.cpp index c7096b127..cb26c6ef9 100644 --- a/toolsrc/src/commands_cache.cpp +++ b/toolsrc/src/commands_cache.cpp @@ -10,7 +10,7 @@ namespace vcpkg::Commands::Cache static std::vector read_all_binary_paragraphs(const VcpkgPaths& paths) { std::vector output; - for (auto&& path : paths.get_filesystem().non_recursive_find_all_files_in_dir(paths.packages)) + for (auto&& path : paths.get_filesystem().get_files_non_recursive(paths.packages)) { const Expected> pghs = Paragraphs::get_single_paragraph(paths.get_filesystem(), path / "CONTROL"); if (auto p = pghs.get()) -- cgit v1.2.3