diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-01-30 19:37:07 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-01-30 19:37:07 -0800 |
| commit | a26c0288931f7fba284ef9bea5e7cbc655e127ba (patch) | |
| tree | 0f8a6ec15bba5ec8cf5bc2468a8812382f03dabc | |
| parent | 872332df343cf01a5b6309a41b1f9c84bcca1bf0 (diff) | |
| download | vcpkg-a26c0288931f7fba284ef9bea5e7cbc655e127ba.tar.gz vcpkg-a26c0288931f7fba284ef9bea5e7cbc655e127ba.zip | |
[vcpkg] Fixup 5d2f4485
| -rw-r--r-- | toolsrc/src/commands_install.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp index a8ddf35f4..69495bd62 100644 --- a/toolsrc/src/commands_install.cpp +++ b/toolsrc/src/commands_install.cpp @@ -153,7 +153,9 @@ namespace vcpkg::Commands::Install System::println(System::color::error, "The following files are already installed in %s and are in conflict with %s", triplet_install_path.generic_string(), binary_paragraph.spec); - Strings::join(intersection, "\n "); + System::print("\n "); + System::println(Strings::join(intersection, "\n ")); + System::println(""); exit(EXIT_FAILURE); } |
