From 6fc5bc668f1556a401bfbff88df17c08ad27407f Mon Sep 17 00:00:00 2001 From: Andrei Vagin Date: Mon, 7 Aug 2023 15:45:37 -0700 Subject: [PATCH] scripts/apt: don't hide apt output It is required to investigate issues. Signed-off-by: Andrei Vagin --- scripts/ci/apt-install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/apt-install b/scripts/ci/apt-install index 45aca13f4..676e0f794 100755 --- a/scripts/ci/apt-install +++ b/scripts/ci/apt-install @@ -15,7 +15,7 @@ while true; do if [ "${install_retry_counter}" -gt "${max_apt_retries}" ]; then exit 1 fi - apt-get clean -qqy && apt-get update -qqy && apt-get install -qqy --no-install-recommends "$@" && break + apt-get update -y && apt-get install -y --no-install-recommends "$@" && break # In case it is a network error let's wait a bit. echo "Retrying attempt ${install_retry_counter}"