diff --git a/common/hooks/post-install/02-remove-python-bytecode-files.sh b/common/hooks/post-install/02-remove-python-bytecode-files.sh index 0250715fdde..db4b355af32 100644 --- a/common/hooks/post-install/02-remove-python-bytecode-files.sh +++ b/common/hooks/post-install/02-remove-python-bytecode-files.sh @@ -1,5 +1,5 @@ # This hook removes python bytecode files (.py[co]). hook() { - find ${PKGDESTDIR} -type f -name *.py[co] -delete + find ${PKGDESTDIR} -type f -name '*.py[co]' -delete }