aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-30 22:10:08 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-30 22:10:08 -0800
commite6e325b1cd92bf0b1aa05c84a2a757713f17fa08 (patch)
tree080fa1217e323aeedd361a98ace091fbe19e3bac /toolsrc/src/commands_install.cpp
parent5c01fc4af871ed1cc1481a53957be1460142a6f2 (diff)
downloadvcpkg-e6e325b1cd92bf0b1aa05c84a2a757713f17fa08.tar.gz
vcpkg-e6e325b1cd92bf0b1aa05c84a2a757713f17fa08.zip
Fix usage of Strings::Joiner
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 439424d28..1f5a2234d 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -155,7 +155,7 @@ namespace vcpkg::Commands::Install
triplet_install_path.generic_string(),
binary_paragraph.spec);
System::print("\n ");
- System::println(Strings::join(intersection, "\n "));
+ System::println(Strings::Joiner::on("\n ").join(intersection));
System::println("");
exit(EXIT_FAILURE);
}