view ci/load-snd-dummy.sh @ 31736:4fac5d2c5a3c v9.0.1200

patch 9.0.1200: AppVeyor builds with an old Python version Commit: https://github.com/vim/vim/commit/474f226582dcd8a4570fcb4d7d3e5a3b27279470 Author: Christopher Plewright <chris@createng.com> Date: Sun Jan 15 13:23:20 2023 +0000 patch 9.0.1200: AppVeyor builds with an old Python version Problem: AppVeyor builds with an old Python version. Solution: Switch from Python 3.8 to 3.11. (Christopher Plewright, closes #11814)
author Bram Moolenaar <Bram@vim.org>
date Sun, 15 Jan 2023 14: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