view ci/load-snd-dummy.sh @ 22145:e6fb7f627448 v8.2.1622

patch 8.2.1622: loop to handle keys for the command line is too long Commit: https://github.com/vim/vim/commit/2f3cd2e4ec5617e3697ec4f4c6e1c9449061ad30 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 6 15:54:00 2020 +0200 patch 8.2.1622: loop to handle keys for the command line is too long Problem: Loop to handle keys for the command line is too long. Solution: Move code to functions. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6880)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Sep 2020 16: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