Skip to content

Commit

Permalink
bpo-40280: clean and ignore .wasm files (pythonGH-29794)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiran authored Nov 26, 2021
1 parent 253b7a0 commit d224e76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.so.*
*.dylib
*.dll
*.wasm
*.orig
*.pyc
*.pyd
Expand Down
1 change: 1 addition & 0 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -2284,6 +2284,7 @@ clean-retain-profile: pycremoval
find . -name '*.[oa]' -exec rm -f {} ';'
find . -name '*.s[ol]' -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 build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name '*.py' -exec rm -f {} ';' || true
Expand Down

0 comments on commit d224e76

Please sign in to comment.