Fix output formatting

This commit is contained in:
Alexander Karatarakis 2017-04-06 18:22:53 -07:00
parent cdc77fdae4
commit 1ed61c4de8

View File

@ -125,7 +125,7 @@ namespace vcpkg::Commands::Remove
{
std::sort(not_installed.begin(), not_installed.end(), &PackageSpecWithRemovePlan::compare_by_name);
System::println("The following packages are not installed, so not removed:\n%s",
Strings::join("\n ", not_installed, [](const PackageSpecWithRemovePlan* p)
Strings::join("\n", not_installed, [](const PackageSpecWithRemovePlan* p)
{
return " " + p->spec.to_string();
}));