diff mbox series

[nft] py: Fix gitignore of lib/ directory

Message ID 20190507132145.3215-1-phil@nwl.cc
State Accepted
Delegated to: Pablo Neira
Headers show
Series [nft] py: Fix gitignore of lib/ directory | expand

Commit Message

Phil Sutter May 7, 2019, 1:21 p.m. UTC
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>
---
 py/.gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/py/.gitignore b/py/.gitignore
index 09c1e62bbd128..10c1710732cbf 100644
--- a/py/.gitignore
+++ b/py/.gitignore
@@ -1,5 +1,5 @@ 
 *.pyc
 build/
 dist/
-lib.*/
+lib*/
 nftables.egg-info/