From c9fb4ee2ede75f375d34c236eeadcbe87244b5dc Mon Sep 17 00:00:00 2001 From: jvoisin Date: Wed, 22 Dec 2021 22:43:23 +0000 Subject: [PATCH] Silence `apt-get install` even more --- CI/install_debian_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CI/install_debian_deps.sh b/CI/install_debian_deps.sh index 6364bb2cd1..945c5f09bf 100755 --- a/CI/install_debian_deps.sh +++ b/CI/install_debian_deps.sh @@ -65,6 +65,6 @@ export APT_CACHE_DIR="${PWD}/apt-cache" set -x mkdir -pv "$APT_CACHE_DIR" apt-get update -yqq -apt-get -qq -o dir::cache::archives="$APT_CACHE_DIR" install -y --no-install-recommends software-properties-common +apt-get -qq -o dir::cache::archives="$APT_CACHE_DIR" install -y --no-install-recommends software-properties-common >/dev/null add-apt-repository -y ppa:openmw/openmw -apt-get -qq -o dir::cache::archives="$APT_CACHE_DIR" install -y --no-install-recommends "${deps[@]}" +apt-get -qq -o dir::cache::archives="$APT_CACHE_DIR" install -y --no-install-recommends "${deps[@]}" >/dev/null