common/hooks: new hooks moved from xbps-src.
This commit is contained in:
10
common/hooks/post-install/03-remove-empty-dirs.sh
Normal file
10
common/hooks/post-install/03-remove-empty-dirs.sh
Normal file
@@ -0,0 +1,10 @@
|
||||
# This hooks removes empty dirs and warns about them.
|
||||
|
||||
hook() {
|
||||
for f in $(find ${PKGDESTDIR} -type d -empty|sort -r); do
|
||||
_dir="${f##${PKGDESTDIR}}"
|
||||
[ -z "${_dir}" ] && continue
|
||||
rmdir --ignore-fail-on-non-empty -p "$f" &>/dev/null
|
||||
msg_warn "$pkgver: removed empty dir: ${_dir}\n"
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user