mirror of
https://github.com/zoriya/vim.git
synced 2026-05-27 08:43:02 +00:00
98be7fecac
Problem: Travis CI config can be improved.
Solution: Remove COVERAGE variable. Add load-snd-dummy script. add "-i NONE"
to avoid messages about viminfo. (Ozaki Kiichi, closes #5813)
9 lines
193 B
Bash
9 lines
193 B
Bash
#!/bin/bash
|
|
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)"
|
|
modprobe snd-dummy
|
|
fi
|