aboutsummaryrefslogtreecommitdiff
path: root/src/vars.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/vars.cc
parentc555d4c25b5526c37e94ee2c593f34bdf28b159e (diff)
fixed like half of everything idk, you can install stuff now
Diffstat (limited to 'src/vars.cc')
-rw-r--r--src/vars.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vars.cc b/src/vars.cc
index 12c7e7e..b619e15 100644
--- a/src/vars.cc
+++ b/src/vars.cc
@@ -4,7 +4,7 @@
#include "vars.hh"
-std::unordered_map<std::string, std::string> repos;
+//std::unordered_map<std::string, std::string> repos;
std::unordered_map<std::string, std::string> install_directories;
bool is_symlink_install = false;
@@ -76,5 +76,6 @@ const std::string italic = "\e[3m";
const std::string color_reset = "\e[0m";
const std::string print_pkgit = bold_yellow + "[" + bold_magenta + "pkgit" + bold_yellow + "]\t" + color_reset;
-const std::string print_skipped = print_pkgit + blue + "[SKIPPED]\t" + color_reset;
+const std::string print_skipped = print_pkgit + blue + "[SKIP]\t" + color_reset;
+const std::string print_warning = print_pkgit + yellow + "[WARN]\t" + color_reset;
const std::string print_error = print_pkgit + red + "[ERROR]\t" + color_reset;