aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg/commands.add-version.cpp6
-rw-r--r--toolsrc/src/vcpkg/commands.civerifyversions.cpp8
2 files changed, 10 insertions, 4 deletions
diff --git a/toolsrc/src/vcpkg/commands.add-version.cpp b/toolsrc/src/vcpkg/commands.add-version.cpp
index 9d7a74465..fc288eb13 100644
--- a/toolsrc/src/vcpkg/commands.add-version.cpp
+++ b/toolsrc/src/vcpkg/commands.add-version.cpp
@@ -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(
diff --git a/toolsrc/src/vcpkg/commands.civerifyversions.cpp b/toolsrc/src/vcpkg/commands.civerifyversions.cpp
index 82a98aa9d..84aab9c01 100644
--- a/toolsrc/src/vcpkg/commands.civerifyversions.cpp
+++ b/toolsrc/src/vcpkg/commands.civerifyversions.cpp
@@ -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;
}