view ci/load-snd-dummy.sh @ 21429:16bc2bd050e0 v8.2.1265

patch 8.2.1265: crash with EXITFREE when split() fails Commit: https://github.com/vim/vim/commit/7d5e744162c1e971e5a863e89787cadc8e56051c Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 21 22:25:51 2020 +0200 patch 8.2.1265: crash with EXITFREE when split() fails Problem: Crash with EXITFREE when split() fails. Solution: Restore 'cpoptions'.
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Jul 2020 22:30:05 +0200
parents c94c103e7cb4
children 3a7017ee1161
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 install -y "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi