Mercurial > vim
annotate ci/load-snd-dummy.sh @ 30835:93d8f81b8610 v9.0.0752
patch 9.0.0752: Rprofile files are not recognized
Commit: https://github.com/vim/vim/commit/7e120ffccbf81ae8acac28f11fbd5eab79a1630d
Author: ObserverOfTime <chronobserver@disroot.org>
Date: Fri Oct 14 20:24:24 2022 +0100
patch 9.0.0752: Rprofile files are not recognized
Problem: Rprofile files are not recognized.
Solution: Recognize Rprofile files as "r". (closes https://github.com/vim/vim/issues/11369)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 14 Oct 2022 21:30:06 +0200 |
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 |