Mercurial > vim
annotate ci/load-snd-dummy.sh @ 23461:d4c85ce037aa
Added tag v8.2.2273 for changeset 09868c86a97fefdf75d8760f26df42dd88ac7110
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 02 Jan 2021 16:00:04 +0100 |
parents | 3a7017ee1161 |
children |
rev | line source |
---|---|
19722
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 #!/bin/bash |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 set -e |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 if ! modprobe snd-dummy; then |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 # snd-dummy is contained in linux-modules-extra (if exists) |
21875
3a7017ee1161
patch 8.2.1487: Travis: installing snd-dummy is not always useful
Bram Moolenaar <Bram@vim.org>
parents:
19722
diff
changeset
|
6 apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)" |
19722
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 modprobe snd-dummy |
c94c103e7cb4
patch 8.2.0417: Travis CI config can be improved
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 fi |