diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-07 05:58:15 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-07 05:58:15 +0000 |
| commit | ea6745dd7ad75c85d0ea4471e9f3357532fb0eb0 (patch) | |
| tree | 1b5a01898a845f579981303edb0709f9cc95a2f2 /src/lua_build.c | |
| parent | ab3f27fd2fb32a52f76146970823525f044a325c (diff) | |
tiny fixes & .editorconfig (thx indium)0.1.1
Diffstat (limited to 'src/lua_build.c')
| -rw-r--r-- | src/lua_build.c | 18 |
1 files changed, 7 insertions, 11 deletions
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 |
