diff options
| author | dacctal <dacctal@symlinx.net> | 2026-05-29 10:12:08 +0000 |
|---|---|---|
| committer | dacctal <dacctal@symlinx.net> | 2026-05-29 10:12:08 +0000 |
| commit | 91f6970b9a5739030a7a071b3809e003e2783395 (patch) | |
| tree | 91091e8b24505e2ce8eea2723a02f301eb05b029 | |
| parent | cf2bd2ae7f6ec8fedf2f4d004c77e31add30fdb5 (diff) | |
quiet mode will no longer tell you 'repo already exists'
| -rw-r--r-- | src/install_pkg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/install_pkg.c b/src/install_pkg.c index 428da37..0dedf81 100644 --- a/src/install_pkg.c +++ b/src/install_pkg.c @@ -48,8 +48,8 @@ void install_pkg(Pkg pkg) { if (pkg.url && strlen(pkg.url) > 0) { add_repo(pkg.url, pkg.name); } - printf("%sdone!\n", print_pkgit); + printf("%sadded repository\n", print_pkgit); } else { - printf("%srepo already exists, done!\n", print_pkgit); + if (is_verbose) printf("%srepo already exists, done!\n", print_pkgit); } }
\ No newline at end of file |
