view ci/load-snd-dummy.sh @ 26954:11ee2667a09a v8.2.4006

patch 8.2.4006: Vim9: crash when declaring variable on the command line Commit: https://github.com/vim/vim/commit/c653e4a2bd4099e2fac8e1c448a0f34581d5a658 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 5 10:16:30 2022 +0000 patch 8.2.4006: Vim9: crash when declaring variable on the command line Problem: Vim9: crash when declaring variable on the command line. Solution: Use a temporary type list. (closes https://github.com/vim/vim/issues/9474)
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Jan 2022 11:30: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