comparison pixmaps/gen-inline-pixbufs.sh @ 25700:d4faa2c5211b

Update runtime files Commit: https://github.com/vim/vim/commit/89a9c159f23fb7b3e24e6d09068adfc24a73afcb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 29 21:55:35 2021 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Aug 2021 22:00:05 +0200
parents 3fc0f57ecb91
children
comparison
equal deleted inserted replaced
25699:8088e687c3d7 25700:d4faa2c5211b
1 #! /bin/sh 1 #! /bin/sh
2 2
3 prefix=stock_ 3 prefix=stock_
4 list= 4 list=
5 5
6 for file in "$@" 6 for file in "$@"; do
7 do 7 name=$(echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||')
8 name=`echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||'`
9 list="$list $prefix$name $file" 8 list="$list $prefix$name $file"
10 done 9 done
11 10
12 gdk-pixbuf-csource --raw --static --build-list $list 11 gdk-pixbuf-csource --raw --static --build-list $list
13