aboutsummaryrefslogtreecommitdiff
path: root/src/update_all.cc
blob: 5af2e67b1726568678589e9a3aae0fc66035d9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "update_all.hh"
#include "create_pkg.hh"
#include "update_pkg.hh"
#include "vars.hh"

void update_all() {
  for (auto repo : repos) {
    Pkg pkg = create_pkg(repo.second);
    update_pkg(pkg);
  }
}