view ci/load-snd-dummy.sh @ 26839:eb6d56ab4858 v8.2.3948

patch 8.2.3948: Vim9: failure with partial with unknown argument count Commit: https://github.com/vim/vim/commit/cfe3af284a26178f4838df7c7489b2a1edd4c3a1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 30 13:59:20 2021 +0000 patch 8.2.3948: Vim9: failure with partial with unknown argument count Problem: Vim9: failure with partial with unknown argument count. Solution: Do not copy argument types if there aren't any.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Dec 2021 15:00:05 +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