view ci/load-snd-dummy.sh @ 19985:f863aa96cae5 v8.2.0548

patch 8.2.0548: Vim9: not all possible func type errors tested Commit: https://github.com/vim/vim/commit/08938eeba463e98d23ba7b88e81bd252c981d235 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 11 23:17:17 2020 +0200 patch 8.2.0548: Vim9: not all possible func type errors tested Problem: Vim9: not all possible func type errors tested. Solution: Add more tests.
author Bram Moolenaar <Bram@vim.org>
date Sat, 11 Apr 2020 23:30:04 +0200
parents c94c103e7cb4
children 3a7017ee1161
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 install -y "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi