From afb9ff6ed523a5c348c7730d1a24d16d38d38575 Mon Sep 17 00:00:00 2001 From: bryan Date: Tue, 6 May 2025 14:55:06 -0400 Subject: [PATCH] Make createrepo noisier --- installJRMC | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index f1e2061..24369c1 100755 --- a/installJRMC +++ b/installJRMC @@ -670,6 +670,7 @@ install_mc_repo() { "${PKG_UPDATE[@]}" || { err "Package update failed!"; return 1; } + echo "Installing $MC_PKG" if ! install_package \ --no-install-check \ --allow-downgrades \ @@ -1138,7 +1139,7 @@ run_createrepo() { [[ -d $CREATEREPO_WEBROOT/repodata ]] && cr_cmd+=(--update) if ! execute "${cr_cmd[@]}"; then - cr_cmd=(sudo createrepo -q "$CREATEREPO_WEBROOT") + cr_cmd=(sudo createrepo "$CREATEREPO_WEBROOT") [[ -d $CREATEREPO_WEBROOT/repodata ]] && cr_cmd+=(--update) if ! (execute "${cr_cmd[@]}" ||