소스 검색

Make createrepo noisier

bryan 1 개월 전
부모
커밋
afb9ff6ed5
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      installJRMC

+ 2 - 1
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[@]}" ||