summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2019-05-07 15:21:45 +0200
committerFlorian Westphal <fw@strlen.de>2019-05-08 16:31:22 +0200
commit611a54199b72a0b02c9abc120b9488a4873dffeb (patch)
treee5afea3f89e12ec40a43a3e02d5435fa9b047781
parentc65c4f9998587a0c705b3635215f25fa5680c0d3 (diff)
py: Fix gitignore of lib/ directory
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>
-rw-r--r--py/.gitignore2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/.gitignore b/py/.gitignore
index 09c1e62b..10c17107 100644
--- a/py/.gitignore
+++ b/py/.gitignore
@@ -1,5 +1,5 @@
*.pyc
build/
dist/
-lib.*/
+lib*/
nftables.egg-info/