Browse Source

Test commit for silencing buildah not found error

bryan 5 months ago
parent
commit
ce81c689df
1 changed files with 1 additions and 2 deletions
  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
 }