mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-20 01:26:38 +02:00
9 lines
139 B
Bash
9 lines
139 B
Bash
#!/bin/sh
|
|
|
|
for i in "$@"; do
|
|
if ! [ -e "$i" ]; then
|
|
continue
|
|
fi
|
|
gtk-update-icon-cache -q -t -f "$i"
|
|
rmdir "$1" 2>/dev/null || :
|
|
done
|