From 13a10a60ea4d4db58f36aae4bdce09a717b38b72 Mon Sep 17 00:00:00 2001 From: Kelwan Date: Fri, 5 Jul 2024 14:44:55 -0700 Subject: [PATCH] chore: remove unneeded line and formatting --- ecsact/cli/commands/build.cc | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ecsact/cli/commands/build.cc b/ecsact/cli/commands/build.cc index 9235557..347e21c 100644 --- a/ecsact/cli/commands/build.cc +++ b/ecsact/cli/commands/build.cc @@ -58,8 +58,10 @@ constexpr auto allowed_recipe_extensions = std::array{ ".json"sv, // json works since yaml is a superset }; -auto resolve_builtin_recipe(std::string recipe_str, const char* argv[]) - -> std::optional { +auto resolve_builtin_recipe( // + std::string recipe_str, + const char* argv[] +) -> std::optional { using namespace std::string_literals; auto exec_path = ecsact::cli::detail::canon_argv0(argv[0]); @@ -200,8 +202,7 @@ auto ecsact::cli::detail::build_command( // ecsact::cli::report_error( "Build recipes do not resolve all imports. Make sure all imported " "functions in provided recipes are also exported by another recipe. " - "If " - "you would like to allow unresolved imports you may provide the " + "If you would like to allow unresolved imports you may provide the " "--allow-unresolved-imports flag to suppress this error." ); return 1;