blob: 6f555437dbcb1f527ac33a6db03f2cad32b17d52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "update_all.hh"
#include "create_pkg.hh"
#include "lua_state.hh"
#include "update_pkg.hh"
#include "vars.hh"
void update_all() {
for (auto repo : cached_repos) {
Pkg pkg = create_pkg(repo.second.source.value);
update_pkg(pkg);
}
}
|