view ci/load-snd-dummy.sh @ 20931:2351948e193d v8.2.1017

patch 8.2.1017: Appveyor output doesn't show MinGW console features Commit: https://github.com/vim/vim/commit/1089374130862e5c19745d3ff4314f0c5690baf1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 19 22:37:47 2020 +0200 patch 8.2.1017: Appveyor output doesn't show MinGW console features Problem: Appveyor output doesn't show MinGW console features. Solution: List the features of the console build.
author Bram Moolenaar <Bram@vim.org>
date Fri, 19 Jun 2020 22:45:05 +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