view ci/load-snd-dummy.sh @ 21166:64f664f9b23a v8.2.1134

patch 8.2.1134: Vim9: getting a list member may not work Commit: https://github.com/vim/vim/commit/435d89789ef4dd329938edbe17c646db9f0ea772 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 5 16:42:13 2020 +0200 patch 8.2.1134: Vim9: getting a list member may not work Problem: Vim9: getting a list member may not work. Solution: Clear the list only after copying the item. (closes https://github.com/vim/vim/issues/6393)
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Jul 2020 16:45:03 +0200
parents c94c103e7cb4
children 3a7017ee1161
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 install -y "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi