stop stripping .hpp files from python source packages

This commit is contained in:
Jan Tattermusch 2020-07-21 14:45:58 +02:00
parent 5d803dcd3f
commit 751b1d04cf
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ clean_non_source_files() {
find . -type f \
| grep -v '\.c$' | grep -v '\.cc$' | grep -v '\.cpp$' \
| grep -v '\.h$' | grep -v '\.hh$' | grep -v '\.inc$' \
| grep -v '\.s$' | grep -v '\.py$' \
| grep -v '\.s$' | grep -v '\.py$' | grep -v '\.hpp$' \
| while read -r file; do
rm -f "$file" || true
done