view ci/load-snd-dummy.sh @ 21961:0ce86b015058 v8.2.1530

patch 8.2.1530: Vim9: test fails on MS-Windows Commit: https://github.com/vim/vim/commit/5163fcce792c9d730bf864f4d9bb07f30625cff9 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 27 23:37:09 2020 +0200 patch 8.2.1530: Vim9: test fails on MS-Windows Problem: Vim9: test fails on MS-Windows. Solution: Skip Ex command inside "if false".
author Bram Moolenaar <Bram@vim.org>
date Thu, 27 Aug 2020 23:45:03 +0200
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