diff options
| author | dacctal <dacctal@symlinx.net> | 2026-05-02 08:38:13 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-05-02 08:38:13 +0000 |
| commit | 44eb727dc537403be092326639a5b7c6d7182146 (patch) | |
| tree | 1459603e69496400c22f53dcec67ec2c3348400a /src/main.cc | |
| parent | c555d4c25b5526c37e94ee2c593f34bdf28b159e (diff) | |
fixed like half of everything idk, you can install stuff now
Diffstat (limited to 'src/main.cc')
| -rw-r--r-- | src/main.cc | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/main.cc b/src/main.cc index dd00010..4ec16c9 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,9 +1,15 @@ +#include <iostream> +#include <unordered_map> + #include "cla_parse.hh" #include "setup_pkgit.hh" -#include "vars.hh" +#include "lua_state.hh" int main(int argc, char *argv[]) { - setup_pkgit(); - cla_parse(argc, argv); - return 0; + setup_pkgit(); + //init_lua_state(); + //repo_build("omnisearch"); + cla_parse(argc, argv); + free_lua_state(); + return 0; } |
