mirror of https://github.com/python/cpython
bpo-40280: clean and ignore .wasm files (GH-29794)
This commit is contained in:
parent
253b7a0a9f
commit
d224e769b8
|
@ -10,6 +10,7 @@
|
||||||
*.so.*
|
*.so.*
|
||||||
*.dylib
|
*.dylib
|
||||||
*.dll
|
*.dll
|
||||||
|
*.wasm
|
||||||
*.orig
|
*.orig
|
||||||
*.pyc
|
*.pyc
|
||||||
*.pyd
|
*.pyd
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue