diff --git a/community-nightlies/rpm.sh b/community-nightlies/rpm.sh index ac086fb44..20a005de1 100755 --- a/community-nightlies/rpm.sh +++ b/community-nightlies/rpm.sh @@ -44,7 +44,7 @@ pgdg_check () yum install -d0 -e0 -y "${repo_url}" - if ! yum info -q postgresql13-server &> /dev/null; then + if ! yum info -q -y postgresql13-server &> /dev/null; then echo "PGDG repositories don't have postgresql13-server package for your operating system" echo "Cannot install Citus, exiting." exit 1 diff --git a/community/rpm.sh b/community/rpm.sh index 68b35dc1a..0aa6cd8ab 100755 --- a/community/rpm.sh +++ b/community/rpm.sh @@ -44,7 +44,7 @@ pgdg_check () yum install -d0 -e0 -y "${repo_url}" - if ! yum info -q postgresql13-server &> /dev/null; then + if ! yum info -q -y postgresql13-server &> /dev/null; then echo "PGDG repositories don't have postgresql13-server package for your operating system" echo "Cannot install Citus, exiting." exit 1 diff --git a/enterprise-nightlies/rpm.sh b/enterprise-nightlies/rpm.sh index e86e0e495..bdd27ed97 100755 --- a/enterprise-nightlies/rpm.sh +++ b/enterprise-nightlies/rpm.sh @@ -44,7 +44,7 @@ pgdg_check () yum install -d0 -e0 -y "${repo_url}" - if ! yum info -q postgresql13-server &> /dev/null; then + if ! yum info -q -y postgresql13-server &> /dev/null; then echo "PGDG repositories don't have postgresql13-server package for your operating system" echo "Cannot install Citus, exiting." exit 1 diff --git a/enterprise/rpm.sh b/enterprise/rpm.sh index d580a55bd..d99f6fb1f 100755 --- a/enterprise/rpm.sh +++ b/enterprise/rpm.sh @@ -44,7 +44,7 @@ pgdg_check () yum install -d0 -e0 -y "${repo_url}" - if ! yum info -q postgresql13-server &> /dev/null; then + if ! yum info -y -q postgresql13-server &> /dev/null; then echo "PGDG repositories don't have postgresql13-server package for your operating system" echo "Cannot install Citus, exiting." exit 1