From 31abe6385c8c996c393938921451c14d6651ae25 Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 4 Nov 2024 13:44:58 -0500 Subject: [PATCH] Test commit for silencing buildah not found error --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index d432ba0..371f25c 100755 --- a/installJRMC +++ b/installJRMC @@ -494,11 +494,11 @@ install_package() { # Install packages if any need installation if [[ ${#pkg_array[@]} -gt 0 ]]; then + debug "${PKG_INSTALL[@]}" "${install_flags[@]}" "${pkg_array[@]}" if ! "${PKG_INSTALL[@]}" "${install_flags[@]}" "${pkg_array[@]}"; then ((silent)) || err "Failed to install ${pkg_array[*]}" return 1 fi - echo "HERE!" fi return 0 }