view ci/load-snd-dummy.sh @ 32198:8643e060bcb8 v9.0.1430

patch 9.0.1430: Livebook files are not recognized Commit: https://github.com/vim/vim/commit/64002035178ac3e0d9ab7269d1bf06c6ede5a854 Author: Mathias Jean Johansen <mathias@mjj.io> Date: Tue Mar 28 21:28:36 2023 +0100 patch 9.0.1430: Livebook files are not recognized Problem: Livebook files are not recognized. Solution: Add a pattern for Livebook files. (Mathias Jean Johansen, closes #12203)
author Bram Moolenaar <Bram@vim.org>
date Tue, 28 Mar 2023 22:30:04 +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