view ci/load-snd-dummy.sh @ 24494:c1de90bc6e63 v8.2.2787

patch 8.2.2787: MS-Windows: crash when using :echoconsole Commit: https://github.com/vim/vim/commit/6d4c1c7ba816294408097d72717366a97781655d Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 20 10:33:28 2021 +0200 patch 8.2.2787: MS-Windows: crash when using :echoconsole Problem: MS-Windows: crash when using :echoconsole. Solution: Do not write a NUL when it's already there.
author Bram Moolenaar <Bram@vim.org>
date Tue, 20 Apr 2021 10:45: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