view ci/load-snd-dummy.sh @ 24148:0edc315f2d0c v8.2.2615

patch 8.2.2615: test is sourcing the wrong file Commit: https://github.com/vim/vim/commit/a4c81bea38d1f3e372a4191ab0bd7d664cba1428 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Mar 17 15:23:16 2021 +0100 patch 8.2.2615: test is sourcing the wrong file Problem: Test is sourcing the wrong file. Solution: Correct the file name.
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Mar 2021 15:30:03 +0100
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