mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 14:19:07 +08:00
Fix output formatting
This commit is contained in:
parent
cdc77fdae4
commit
1ed61c4de8
@ -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();
|
||||
}));
|
||||
|
Loading…
Reference in New Issue
Block a user