diff options
| author | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-06-21 01:33:58 +0000 |
| commit | 7cde9aeb5dccce578c1eed13cf1ed2c61e446800 (patch) | |
| tree | 3323e34bbec0a87a4bb659a90816b28a6a241f5a /src/lua_build.c | |
| parent | 6482da05e96630d622f7deea02e31cb0ff07c89e (diff) | |
huge code cleanup
Diffstat (limited to 'src/lua_build.c')
| -rw-r--r-- | src/lua_build.c | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/lua_build.c b/src/lua_build.c index 1e90d3a..269482d 100644 --- a/src/lua_build.c +++ b/src/lua_build.c @@ -6,35 +6,35 @@ #include "vars.h" bool lua_build(const char *repository, const char *target, const char *path) { - if (is_verbose) printf( - "%s attempting init.lua: 'repositories.%s.build'\n", - print_pkgit, repository - ); - if (repo_build(repository, target)) { return true; } - if (is_verbose) printf( - "%s failed init.lua: 'repositories.%s.build'\n", - print_warning, repository - ); + if (is_verbose) printf( + "%s attempting init.lua: 'repositories.%s.build'\n", + print_pkgit, repository + ); + if (repo_build(repository, target)) { return true; } + if (is_verbose) printf( + "%s failed init.lua: 'repositories.%s.build'\n", + print_warning, repository + ); - if (is_verbose) printf( - "%s attempting bldit.lua\n", - print_pkgit - ); - if (bldit(target)) { return true; } - if (is_verbose) printf( - "%s failed bldit.lua\n", - print_warning - ); + if (is_verbose) printf( + "%s attempting bldit.lua\n", + print_pkgit + ); + if (bldit(target)) { return true; } + if (is_verbose) printf( + "%s failed bldit.lua\n", + print_warning + ); - if (is_verbose) printf( - "%s attempting init.lua: 'build_systems'\n", - print_pkgit - ); - if (config_build(path, target)) { return true; } - if (is_verbose) printf( - "%s failed init.lua: 'build_systems'\n", - print_warning - ); + if (is_verbose) printf( + "%s attempting init.lua: 'build_systems'\n", + print_pkgit + ); + if (config_build(path, target)) { return true; } + if (is_verbose) printf( + "%s failed init.lua: 'build_systems'\n", + print_warning + ); - return false; + return false; }
\ No newline at end of file |
