view pixmaps/gen-inline-pixbufs.sh @ 22790:44317eb799d7 v8.2.1943

patch 8.2.1943: Vim9: wrong error message when colon is missing Commit: https://github.com/vim/vim/commit/36113e46b4a7e8c33aa1ed1c9cfa6591c952183d Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 2 21:08:47 2020 +0100 patch 8.2.1943: Vim9: wrong error message when colon is missing Problem: Vim9: wrong error message when colon is missing. Solution: Check for a missing colon. (issue https://github.com/vim/vim/issues/7239)
author Bram Moolenaar <Bram@vim.org>
date Mon, 02 Nov 2020 21:15:03 +0100
parents 3fc0f57ecb91
children d4faa2c5211b
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"
do
    name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list