diff options
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 |
