view ci/load-snd-dummy.sh @ 27792:2d7691a945d1 v8.2.4422

patch 8.2.4422: autochdir test fails on MS-Windows Commit: https://github.com/vim/vim/commit/adbb383e0f2bb59286ea8133f02c448fd334958f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 19 14:49:51 2022 +0000 patch 8.2.4422: autochdir test fails on MS-Windows Problem: Autochdir test fails on MS-Windows. Solution: Expecta nother error on MS-Windows.
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Feb 2022 16:00:02 +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