[vcpkg] Format JSON output of `x-add-version` to minimize diffs (#15664)

* Fix output json file format

* Add instructions to fix missing versions file
This commit is contained in:
Victor Romero 2021-01-15 00:04:28 -08:00 коммит произвёл GitHub
Родитель 0e46f931b0
Коммит a8e97d4a4b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -97,7 +97,8 @@ namespace
}
std::error_code ec;
fs.write_contents(output_path, Json::stringify(serialize_baseline(baseline_map), {}), ec);
fs.write_contents(
output_path, Json::stringify(serialize_baseline(baseline_map), Json::JsonStyle::with_spaces(2)), ec);
if (ec)
{
System::printf(
@ -127,7 +128,8 @@ namespace
std::error_code ec;
fs.create_directories(output_path.parent_path(), VCPKG_LINE_INFO);
fs.write_contents(output_path, Json::stringify(serialize_versions(versions), {}), ec);
fs.write_contents(
output_path, Json::stringify(serialize_versions(versions), Json::JsonStyle::with_spaces(2)), ec);
if (ec)
{
System::printf(

Просмотреть файл

@ -373,9 +373,13 @@ namespace vcpkg::Commands::CIVerifyVersions
{
System::printf(System::Color::error, "FAIL: %s\n", port_name);
errors.emplace(Strings::format("Error: While validating port %s.\n"
" Missing expected versions file at: %s",
" Missing expected versions file at: %s\n"
" Run:\n\n"
" vcpkg x-add-version %s\n\n"
" to create the versions file.",
port_name,
fs::u8string(versions_file_path)));
fs::u8string(versions_file_path),
port_name));
continue;
}