aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-12 23:16:04 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-12 23:16:04 -0700
commit8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca (patch)
treef8cece941fe8b40a1fcbfff9a5f4e755bd309973 /toolsrc/src/commands_install.cpp
parentbd01f8ce83a0f4fc1963471623971d55d7460972 (diff)
downloadvcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.tar.gz
vcpkg-8abbce636101fa5bed0d3f6d0a4e7f62c7d044ca.zip
write_all_lines() -> write_lines()
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index ce3cbc942..8046b53a7 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -89,7 +89,7 @@ namespace vcpkg::Commands::Install
std::sort(output.begin(), output.end());
- fs.write_all_lines(paths.listfile_path(bpgh), output);
+ fs.write_lines(paths.listfile_path(bpgh), output);
}
static void remove_first_n_chars(std::vector<std::string>* strings, const size_t n)