Skip to content

Commit

Permalink
Be more specific about the .so gitignore patterns (pythonGH-17328)
Browse files Browse the repository at this point in the history
In pythonGH-15823 the pattern was changed from `libpython*.so*` to `*.so*` which
matches a bit too greedily for some packagers.  For instance this trips up
`debian/README.source`.  A more specific pattern fixes this issue.
  • Loading branch information
asottile authored and zware committed Nov 27, 2019
1 parent 9bbcbc9 commit 1ef4c32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
*.iml
*.o
*.a
*.so*
*.so
*.so.*
*.dylib
*.dll
*.orig
Expand Down

0 comments on commit 1ef4c32

Please sign in to comment.