2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-30 05:48:05 +00:00

scripts/apt: don't hide apt output

It is required to investigate issues.

Signed-off-by: Andrei Vagin <avagin@google.com>
This commit is contained in:
Andrei Vagin 2023-08-07 15:45:37 -07:00 committed by Andrei Vagin
parent 242de4e72e
commit 6fc5bc668f

View File

@ -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}"