]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
py: Fix gitignore of lib/ directory
authorPhil Sutter <phil@nwl.cc>
Tue, 7 May 2019 13:21:45 +0000 (15:21 +0200)
committerFlorian Westphal <fw@strlen.de>
Wed, 8 May 2019 14:31:22 +0000 (16:31 +0200)
Pattern is not a PCRE one but merely a shell glob. Hence 'lib.*' matches
only 'lib.' prefix, not also 'lib'.

Fixes: bf9653667a39e ("python: installation of binding via make install")
Signed-off-by: Phil Sutter <phil@nwl.cc>
Signed-off-by: Florian Westphal <fw@strlen.de>
py/.gitignore

index 09c1e62bbd1285295012cfdf13a21c39c89d37f7..10c1710732cbf4f4277e6798b0c3ffd00d427985 100644 (file)
@@ -1,5 +1,5 @@
 *.pyc
 build/
 dist/
-lib.*/
+lib*/
 nftables.egg-info/