aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_cache.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src/commands_cache.cpp')
-rw-r--r--toolsrc/src/commands_cache.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/toolsrc/src/commands_cache.cpp b/toolsrc/src/commands_cache.cpp
index cb26c6ef9..75de78461 100644
--- a/toolsrc/src/commands_cache.cpp
+++ b/toolsrc/src/commands_cache.cpp
@@ -1,9 +1,10 @@
#include "pch.h"
+
+#include "BinaryParagraph.h"
+#include "Paragraphs.h"
#include "vcpkg_Commands.h"
-#include "vcpkg_System.h"
#include "vcpkg_Files.h"
-#include "Paragraphs.h"
-#include "BinaryParagraph.h"
+#include "vcpkg_System.h"
namespace vcpkg::Commands::Cache
{
@@ -12,7 +13,8 @@ namespace vcpkg::Commands::Cache
std::vector<BinaryParagraph> output;
for (auto&& path : paths.get_filesystem().get_files_non_recursive(paths.packages))
{
- const Expected<std::unordered_map<std::string, std::string>> pghs = Paragraphs::get_single_paragraph(paths.get_filesystem(), path / "CONTROL");
+ const Expected<std::unordered_map<std::string, std::string>> pghs =
+ Paragraphs::get_single_paragraph(paths.get_filesystem(), path / "CONTROL");
if (auto p = pghs.get())
{
const BinaryParagraph binary_paragraph = BinaryParagraph(*p);
@@ -26,7 +28,8 @@ namespace vcpkg::Commands::Cache
void perform_and_exit(const VcpkgCmdArguments& args, const VcpkgPaths& paths)
{
static const std::string example = Strings::format(
- "The argument should be a substring to search for, or no argument to display all cached libraries.\n%s", Commands::Help::create_example_string("cache png"));
+ "The argument should be a substring to search for, or no argument to display all cached libraries.\n%s",
+ Commands::Help::create_example_string("cache png"));
args.check_max_arg_count(1, example);
args.check_and_get_optional_command_arguments({});