view ci/load-snd-dummy.sh @ 25044:a9a21631c090 v8.2.3059

patch 8.2.3059: Vim9: memory leak when using lambda Commit: https://github.com/vim/vim/commit/e3ffaa6b7c2d53ab53da933ec91382d003cf9a12 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 26 22:17:35 2021 +0200 patch 8.2.3059: Vim9: memory leak when using lambda Problem: Vim9: memory leak when using lambda. Solution: Do not store the default value strings when skipping.
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Jun 2021 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