view ci/load-snd-dummy.sh @ 25725:2dd3007f902d v8.2.3398

patch 8.2.3398: html text objects are not fully tested Commit: https://github.com/vim/vim/commit/af631f61bc42d0dddafe1bc0c06872cf3aaeb239 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Fri Sep 3 16:50:16 2021 +0200 patch 8.2.3398: html text objects are not fully tested Problem: Html text objects are not fully tested. Solution: Add tests for dbcs encoding and different number of backslashes. (Dominique Pell?, closes #8831)
author Bram Moolenaar <Bram@vim.org>
date Fri, 03 Sep 2021 17:00:05 +0200
parents 3a7017ee1161
children
line wrap: on
line source

#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi