diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-19 19:46:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-19 19:46:12 +0200 |
commit | a7c4e747639ad7642cd50ed577ff4c93db200df4 (patch) | |
tree | 085a5afe56c73e625d39b1e7d0da36680a95401c /ci | |
parent | f8abbf37d66c41d980284e28e0e38a399890e918 (diff) | |
download | vim-git-a7c4e747639ad7642cd50ed577ff4c93db200df4.tar.gz |
patch 8.2.1487: Travis: installing snd-dummy is not always usefulv8.2.1487
Problem: Travis: installing snd-dummy is not always useful.
Solution: Only install snd-dummy on amd64. (Ozaki Kiichi, closes #6738)
Diffstat (limited to 'ci')
-rw-r--r-- | ci/load-snd-dummy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |