aboutsummaryrefslogtreecommitdiff
path: root/src/list_pkgs.cc
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-02 08:38:13 +0000
committerdacctal <dacctal@symlinx.net>2026-05-02 08:38:13 +0000
commit44eb727dc537403be092326639a5b7c6d7182146 (patch)
tree1459603e69496400c22f53dcec67ec2c3348400a /src/list_pkgs.cc
parentc555d4c25b5526c37e94ee2c593f34bdf28b159e (diff)
fixed like half of everything idk, you can install stuff now
Diffstat (limited to 'src/list_pkgs.cc')
-rw-r--r--src/list_pkgs.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/list_pkgs.cc b/src/list_pkgs.cc
index 487a75c..a64c753 100644
--- a/src/list_pkgs.cc
+++ b/src/list_pkgs.cc
@@ -1,10 +1,11 @@
#include <iostream>
#include "list_pkgs.hh"
+#include "lua_state.hh"
#include "vars.hh"
void list_pkgs() {
- for (auto repo : repos) {
+ for (auto repo : cached_repos) {
std::cout << repo.first << std::endl;
}
}