view ci/load-snd-dummy.sh @ 21636:dcfcb6163f3d v8.2.1368

patch 8.2.1368: Vim9: no error for missing white space around operator Commit: https://github.com/vim/vim/commit/ff1cd39cfe62d5089d5e703f4eb290694751ace3 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Aug 5 11:51:30 2020 +0200 patch 8.2.1368: Vim9: no error for missing white space around operator Problem: Vim9: no error for missing white space around operator. Solution: Check for white space around <, !=, etc.
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Aug 2020 12:00:04 +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