common/hooks: new hooks moved from xbps-src.
This commit is contained in:
parent
8dd409bc58
commit
2daaa82b63
3 changed files with 281 additions and 0 deletions
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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue