d0b4ad9dfa
This fixes the error 'find: paths must precede expression'.
6 lines
118 B
Bash
6 lines
118 B
Bash
# This hook removes python bytecode files (.py[co]).
|
|
|
|
hook() {
|
|
find ${PKGDESTDIR} -type f -name '*.py[co]' -delete
|
|
}
|