view ci/load-snd-dummy.sh @ 29401:23f44007f65d v9.0.0043

patch 9.0.0043: insufficient testing for bracket commands Commit: https://github.com/vim/vim/commit/cf34434b5e840dda4a21cd9c0bee24e3e43a674d Author: zeertzjq <zeertzjq@outlook.com> Date: Wed Jul 6 12:57:31 2022 +0100 patch 9.0.0043: insufficient testing for bracket commands Problem: Insufficient testing for bracket commands. Solution: Add a few more tests. (closes https://github.com/vim/vim/issues/10668)
author Bram Moolenaar <Bram@vim.org>
date Wed, 06 Jul 2022 14: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