bpo-40280: clean and ignore .wasm files (GH-29794)

This commit is contained in:
Christian Heimes 2021-11-26 15:29:46 +02:00 committed by GitHub
parent 253b7a0a9f
commit d224e769b8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -10,6 +10,7 @@
*.so.* *.so.*
*.dylib *.dylib
*.dll *.dll
*.wasm
*.orig *.orig
*.pyc *.pyc
*.pyd *.pyd

View File

@ -2284,6 +2284,7 @@ clean-retain-profile: pycremoval
find . -name '*.[oa]' -exec rm -f {} ';' find . -name '*.[oa]' -exec rm -f {} ';'
find . -name '*.s[ol]' -exec rm -f {} ';' find . -name '*.s[ol]' -exec rm -f {} ';'
find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';' find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
find . -name '*.wasm' -exec rm -f {} ';'
find . -name '*.lst' -exec rm -f {} ';' find . -name '*.lst' -exec rm -f {} ';'
find build -name 'fficonfig.h' -exec rm -f {} ';' || true find build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name '*.py' -exec rm -f {} ';' || true find build -name '*.py' -exec rm -f {} ';' || true