13465a27c6
* Initial packaging for Maemo UI from https://github.com/fremantle-gtk2/ gtk+2.0-maemo package is based on https://pkgs.alpinelinux.org/package/edge/main/x86/gtk+2.0 by Natanael Copa * Include git revision in tarball filename
9 lines
111 B
Bash
9 lines
111 B
Bash
#!/bin/sh
|
|
|
|
for i in "$@"; do
|
|
if ! [ -e "$i" ]; then
|
|
continue
|
|
fi
|
|
gtk-update-icon-cache -q -t -f "$i"
|
|
done
|
|
|