Be more specific about the `.so` gitignore patterns (GH-17328)
In GH-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.
This commit is contained in:
parent
9bbcbc9f6d
commit
1ef4c32c8d
|
@ -6,7 +6,8 @@
|
||||||
*.iml
|
*.iml
|
||||||
*.o
|
*.o
|
||||||
*.a
|
*.a
|
||||||
*.so*
|
*.so
|
||||||
|
*.so.*
|
||||||
*.dylib
|
*.dylib
|
||||||
*.dll
|
*.dll
|
||||||
*.orig
|
*.orig
|
||||||
|
|
Loading…
Reference in New Issue