forked from aniani/vim
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
|