view ci/load-snd-dummy.sh @ 29330:948c947cb1ed v9.0.0008

patch 9.0.0008: cannot specify the variable name for "xxd -i" Commit: https://github.com/vim/vim/commit/83e11800cc3775de3135ac7d823137c8c1e87fa1 Author: David Gow <david@ingeniumdigital.com> Date: Wed Jun 29 20:24:49 2022 +0100 patch 9.0.0008: cannot specify the variable name for "xxd -i" Problem: Cannot specify the variable name for "xxd -i". Solution: Add the "-name" argument. (David Gow, closes https://github.com/vim/vim/issues/10599)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Jun 2022 21:30: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