Przeglądaj źródła

Test commit for silencing buildah not found error

bryan 5 miesięcy temu
rodzic
commit
ce81c689df
1 zmienionych plików z 1 dodań i 2 usunięć
  1. 1 2
      installJRMC

+ 1 - 2
installJRMC

@@ -492,14 +492,13 @@ install_package() {
       ((no_gpg_check)) && install_flags+=(--allow-unsigned-rpm) ;;
   esac
 
-  echo "Pacakge array: ${pkg_array[*]}"
-
   # Install packages if any need installation
   if [[ ${#pkg_array[@]} -gt 0 ]]; then
     if ! "${PKG_INSTALL[@]}" "${install_flags[@]}" "${pkg_array[@]}"; then     
       ((silent)) || err "Failed to install ${pkg_array[*]}"
       return 1
     fi
+    echo "HERE!"
   fi
   return 0
 }