view ci/load-snd-dummy.sh @ 23031:b68313ee7002 v8.2.2062

patch 8.2.2062: <Cmd> does not handle CTRL-V Commit: https://github.com/vim/vim/commit/4a44120e3dc1d40dd7109658afd5e078360b1d8f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 28 14:43:26 2020 +0100 patch 8.2.2062: <Cmd> does not handle CTRL-V Problem: <Cmd> does not handle CTRL-V. Solution: Call get_literal() after encountering CTRL-V. (closes https://github.com/vim/vim/issues/7387)
author Bram Moolenaar <Bram@vim.org>
date Sat, 28 Nov 2020 14:45: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