From: Phil Sutter Date: Tue, 7 May 2019 13:21:45 +0000 (+0200) Subject: py: Fix gitignore of lib/ directory X-Git-Tag: v0.9.1~88 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=611a54199b72a0b02c9abc120b9488a4873dffeb;p=thirdparty%2Fnftables.git 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 Signed-off-by: Florian Westphal --- 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/