aboutsummaryrefslogtreecommitdiff
path: root/common/hooks/post-install/03-remove-empty-dirs.sh
blob: c54f458f61eec679bc79a10d144566b01fe14207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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 f; do
            _dir="${f##${PKGDESTDIR}}"
            msg_warn "$pkgver: removed empty dir: ${_dir}\n"
        done
    fi
}