view ci/load-snd-dummy.sh @ 23821:bfc1ae959d9d v8.2.2452

patch 8.2.2452: no completion for the 'filetype' option Commit: https://github.com/vim/vim/commit/d5e8c92816f35ea1a9298084238a08f35958baa6 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Feb 2 21:10:01 2021 +0100 patch 8.2.2452: no completion for the 'filetype' option Problem: No completion for the 'filetype' option. Solution: Add filetype completion. (Martin Tournoij, closes https://github.com/vim/vim/issues/7747)
author Bram Moolenaar <Bram@vim.org>
date Tue, 02 Feb 2021 21:15: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