view ci/load-snd-dummy.sh @ 21837:2b941fbab4d9 v8.2.1468

patch 8.2.1468: Vim9: invalid error for missing white space Commit: https://github.com/vim/vim/commit/f923571ec17b6caeeb7f4abfd7eec3f707ab9c45 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 16 18:42:53 2020 +0200 patch 8.2.1468: Vim9: invalid error for missing white space Problem: Vim9: invalid error for missing white space. Solution: Don't skip over white space after index. (closes https://github.com/vim/vim/issues/6718)
author Bram Moolenaar <Bram@vim.org>
date Sun, 16 Aug 2020 18:45:03 +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