Skip to content

Commit 1ef4c32

Browse files
asottilezware
authored andcommitted
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.
1 parent 9bbcbc9 commit 1ef4c32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
*.iml
77
*.o
88
*.a
9-
*.so*
9+
*.so
10+
*.so.*
1011
*.dylib
1112
*.dll
1213
*.orig

0 commit comments

Comments
 (0)