diff options
| author | dacctal <donotcontactmevia@email.invalid> | 2026-06-28 05:56:56 +0000 |
|---|---|---|
| committer | dacctal <donotcontactmevia@email.invalid> | 2026-06-28 05:56:56 +0000 |
| commit | 64e61e9b5de7546dc3bcbca577a029629774e108 (patch) | |
| tree | 846bf2bf5f1dbfdd00e6f841454d6ed748770671 /src/declare.c | |
| parent | 0cc8a1c0faa2743acc6bc38ee8a0c6e2af4f64b1 (diff) | |
fixed --quiet without a matching quiet target edgecase
Diffstat (limited to 'src/declare.c')
| -rw-r--r-- | src/declare.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/declare.c b/src/declare.c index 4974c22..2841cf9 100644 --- a/src/declare.c +++ b/src/declare.c @@ -28,10 +28,10 @@ #include "lua_state.h" void declare(void) { - init_lua_state(); - cache_repos(); - for (size_t i = 0; i < cached_repos_count; i++) { - Pkg pkg = create_pkg(cached_repos[i].source_value); - update_pkg(pkg); - } + init_lua_state(); + cache_repos(); + for (size_t i = 0; i < cached_repos_count; i++) { + Pkg pkg = create_pkg(cached_repos[i].source_value); + update_pkg(pkg); + } } |
