view pixmaps/gen-inline-pixbufs.sh @ 25705:f165d99cda45 v8.2.3388

patch 8.2.3388: fnamemodify('path/..', ':p') differs from using 'path/../' Commit: https://github.com/vim/vim/commit/4eaef9979fc5032606897963f1af37674ee0d422 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 30 21:26:16 2021 +0200 patch 8.2.3388: fnamemodify('path/..', ':p') differs from using 'path/../' Problem: fnamemodify('path/..', ':p') differs from using 'path/../'. Solution: Include the "/.." in the directory name. (closes https://github.com/vim/vim/issues/8808)
author Bram Moolenaar <Bram@vim.org>
date Mon, 30 Aug 2021 21:30:04 +0200
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