From ea6745dd7ad75c85d0ea4471e9f3357532fb0eb0 Mon Sep 17 00:00:00 2001 From: dacctal Date: Sun, 7 Jun 2026 05:58:15 +0000 Subject: tiny fixes & .editorconfig (thx indium) --- src/lua_build.c | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'src/lua_build.c') diff --git a/src/lua_build.c b/src/lua_build.c index f99a341..de82f83 100644 --- a/src/lua_build.c +++ b/src/lua_build.c @@ -6,22 +6,18 @@ #include "vars.h" bool lua_build(const char *repository, const char *target, const char *path) { - if (is_verbose) printf("%sattempting to use build function specified in 'repositories.%s'...\n", - print_pkgit, repository); + if (is_verbose) printf( + "%sattempting to use build function specified in 'repositories.%s'...\n", + print_pkgit, repository + ); - if (repo_build(repository)) { - return true; - } + if (repo_build(repository)) { return true; } if (is_verbose) printf("%sattempting to use build function specified in 'bldit.lua'...\n", print_pkgit); - if (bldit(target)) { - return true; - } + if (bldit(target)) { return true; } if (is_verbose) printf("%sattempting to use build functions specified in 'build_systems'...\n", print_pkgit); - if (config_build(path)) { - return true; - } + if (config_build(path)) { return true; } return false; } \ No newline at end of file -- cgit v1.2.3