mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-01 05:23:50 +02:00
5 lines
116 B
Bash
5 lines
116 B
Bash
# This hook removes python bytecode files (.py[co]).
|
|
|
|
hook() {
|
|
find ${PKGDESTDIR} -type f -name *.py[co] -delete
|
|
}
|