From a7c4e747639ad7642cd50ed577ff4c93db200df4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 19 Aug 2020 19:46:12 +0200 Subject: patch 8.2.1487: Travis: installing snd-dummy is not always useful Problem: Travis: installing snd-dummy is not always useful. Solution: Only install snd-dummy on amd64. (Ozaki Kiichi, closes #6738) --- ci/load-snd-dummy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/load-snd-dummy.sh b/ci/load-snd-dummy.sh index 5ceb7cedf..b0101b0f8 100644 --- a/ci/load-snd-dummy.sh +++ b/ci/load-snd-dummy.sh @@ -3,6 +3,6 @@ set -e if ! modprobe snd-dummy; then # snd-dummy is contained in linux-modules-extra (if exists) - apt install -y "linux-modules-extra-$(uname -r)" + apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)" modprobe snd-dummy fi -- cgit v1.2.1