view pixmaps/gen-inline-pixbufs.sh @ 31041:ce04a773d598 v9.0.0855

patch 9.0.0855: comment not located above the code it refers to Commit: https://github.com/vim/vim/commit/09a93e3e66689c691a00fce25e4ce310d81edaee Author: zeertzjq <zeertzjq@outlook.com> Date: Thu Nov 10 17:05:28 2022 +0000 patch 9.0.0855: comment not located above the code it refers to Problem: Comment not located above the code it refers to. Solution: Move the comment. (closes https://github.com/vim/vim/issues/11527)
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Nov 2022 18:15:04 +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