aboutsummaryrefslogtreecommitdiff
path: root/src/install_pkg.c
diff options
context:
space:
mode:
authordacctal <dacctal@symlinx.net>2026-05-29 10:07:23 +0000
committerdacctal <dacctal@symlinx.net>2026-05-29 10:07:23 +0000
commitcf2bd2ae7f6ec8fedf2f4d004c77e31add30fdb5 (patch)
treeded1970b051676cabe810637b3816dca141e36ab /src/install_pkg.c
parent156c89a9781e8e5e3580e48646adc36b4d8cee85 (diff)
added success indicator on install, and print package name when complete
Diffstat (limited to 'src/install_pkg.c')
-rw-r--r--src/install_pkg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/install_pkg.c b/src/install_pkg.c
index c326d48..428da37 100644
--- a/src/install_pkg.c
+++ b/src/install_pkg.c
@@ -32,7 +32,7 @@ void install_pkg(Pkg pkg) {
copy_install(pkg.src);
}
}
- printf("%sinstalled!\n", print_pkgit);
+ printf("%s%s installed!\n", print_success, pkg.name);
bool repo_exists = false;
for (size_t i = 0; i < cached_repos_count; i++) {