live-build/share/hooks/normal/9010-remove-python-pyc.hook...

10 lines
165 B
Bash
Executable File

#!/bin/sh
set -e
# Remove Python *.pyc files.
#
# This removes byte-compiled Python modules to save some space.
find /usr -name "*.pyc" -print0 | xargs -0r rm -f