view pixmaps/gen-inline-pixbufs.sh @ 27205:6c177a9b436e v8.2.4131

patch 8.2.4131: Vim9: calling function in autoload import does not work Commit: https://github.com/vim/vim/commit/cbbc48f64b9cfd88720dc94b0578a3726f725178 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 18 12:58:28 2022 +0000 patch 8.2.4131: Vim9: calling function in autoload import does not work Problem: Vim9: calling function in autoload import does not work in a :def function. Solution: When a variable is not found and a PCALL follows use a funcref. (closes #9550)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Jan 2022 14:00:05 +0100
parents d4faa2c5211b
children
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