aboutsummaryrefslogtreecommitdiff
path: root/src/install_pkg.cc
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-02 09:02:46 +0000
committerdacctal <dacctal@symlinx.net>2026-05-02 09:02:46 +0000
commit47652687bcf1e02eb5503a6223b16238d4d6d161 (patch)
tree4d2dc6496353f8954a73822769bd67d90a474c9c /src/install_pkg.cc
parent44eb727dc537403be092326639a5b7c6d7182146 (diff)
fixed like half of everything idk, you can install stuff now
Diffstat (limited to 'src/install_pkg.cc')
-rw-r--r--src/install_pkg.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/install_pkg.cc b/src/install_pkg.cc
index 2cf7193..0753606 100644
--- a/src/install_pkg.cc
+++ b/src/install_pkg.cc
@@ -13,13 +13,16 @@
void install_pkg(Pkg pkg) {
std::cout << print_pkgit << "fetching source..." << std::endl;
fetch_src(pkg);
+ std::cout << print_pkgit << "source fetched!" << std::endl;
std::cout << print_pkgit << "building..." << std::endl;
build(pkg);
+ std::cout << print_pkgit << "build complete!" << std::endl;
std::cout << print_pkgit << "installing..." << std::endl;
if (is_symlink_install) { link_install(pkg.src); }
else { copy_install(pkg.src); }
+ std::cout << print_pkgit << "installed!" << std::endl;
bool repo_exists = false;
for (auto repo : cached_repos) {