mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-08 08:53:48 +02:00
6 lines
178 B
Bash
6 lines
178 B
Bash
# This hook removes python bytecode files (.py[co]).
|
|
|
|
hook() {
|
|
msg_normal "$pkgver: removing python bytecode archives...\n"
|
|
find ${PKGDESTDIR} -type f -name *.py[co] -delete
|
|
}
|