view ci/load-snd-dummy.sh @ 23569:754387a3aa35 v8.2.2327

patch 8.2.2327: debugging code included Commit: https://github.com/vim/vim/commit/16a6f91ccb42ebde639a4185322b07719d345e86 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jan 10 23:58:28 2021 +0100 patch 8.2.2327: debugging code included Problem: Debugging code included. Solution: Remove the debugging code.
author Bram Moolenaar <Bram@vim.org>
date Mon, 11 Jan 2021 00:00:04 +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