mirror of
https://github.com/xHyroM/void-packages.git
synced 2024-11-10 08:58:07 +01:00
10 lines
321 B
Bash
10 lines
321 B
Bash
# This hooks removes empty dirs and warns about them.
|
|
|
|
hook() {
|
|
if [ -d "${PKGDESTDIR}" ]; then
|
|
find "${PKGDESTDIR}" -mindepth 1 -type d -empty -print -delete|sort -r|while read -r f; do
|
|
_dir="${f##${PKGDESTDIR}}"
|
|
msg_warn "$pkgver: removed empty dir: ${_dir}\n"
|
|
done
|
|
fi
|
|
}
|