aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_import.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-12 23:15:02 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-12 23:15:02 -0700
commitbd01f8ce83a0f4fc1963471623971d55d7460972 (patch)
tree81f1678e10dc474efae6dc1bec1777d77d0f2867 /toolsrc/src/commands_import.cpp
parent1b21fd0f71e5dd428c5f80396aa50ec7e0a9ee00 (diff)
downloadvcpkg-bd01f8ce83a0f4fc1963471623971d55d7460972.tar.gz
vcpkg-bd01f8ce83a0f4fc1963471623971d55d7460972.zip
get_files_recursive()/get_files_non_recursive()
Diffstat (limited to 'toolsrc/src/commands_import.cpp')
-rw-r--r--toolsrc/src/commands_import.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_import.cpp b/toolsrc/src/commands_import.cpp
index b65f636eb..95e23302d 100644
--- a/toolsrc/src/commands_import.cpp
+++ b/toolsrc/src/commands_import.cpp
@@ -20,7 +20,7 @@ namespace vcpkg::Commands::Import
static Binaries find_binaries_in_dir(const Files::Filesystem& fs, const fs::path& path)
{
- auto files = fs.recursive_find_all_files_in_dir(path);
+ auto files = fs.get_files_recursive(path);
check_is_directory(VCPKG_LINE_INFO, fs, path);