pkgs/common/hooks/post-install/02-remove-python-bytecode-files.sh
2022-04-12 14:56:19 -04:00

7 lines
168 B
Bash

# This hook removes python bytecode files (.py[co]).
hook() {
if [ -d "${PKGDESTDIR}" ]; then
find ${PKGDESTDIR} -type f -name '*.py[co]' -delete
fi
}