view ci/load-snd-dummy.sh @ 31906:9fc3b3928ad5 v9.0.1285

patch 9.0.1285: various small problems Commit: https://github.com/vim/vim/commit/a9a6b0323ea3dc5e4d11d28e7c9ae3534e02ee54 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 5 18:00:42 2023 +0000 patch 9.0.1285: various small problems Problem: Various small problems. Solution: Adjust white space and comments.
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Feb 2023 19:15:03 +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