Skip to content

Commit d224e76

Browse files
authored
bpo-40280: clean and ignore .wasm files (GH-29794)
1 parent 253b7a0 commit d224e76

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*.so.*
1111
*.dylib
1212
*.dll
13+
*.wasm
1314
*.orig
1415
*.pyc
1516
*.pyd

Makefile.pre.in

+1
Original file line numberDiff line numberDiff line change
@@ -2284,6 +2284,7 @@ clean-retain-profile: pycremoval
22842284
find . -name '*.[oa]' -exec rm -f {} ';'
22852285
find . -name '*.s[ol]' -exec rm -f {} ';'
22862286
find . -name '*.so.[0-9]*.[0-9]*' -exec rm -f {} ';'
2287+
find . -name '*.wasm' -exec rm -f {} ';'
22872288
find . -name '*.lst' -exec rm -f {} ';'
22882289
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
22892290
find build -name '*.py' -exec rm -f {} ';' || true

0 commit comments

Comments
 (0)