From 538be7ce70d07ceae8569eda3290408964373798 Mon Sep 17 00:00:00 2001 From: Chandan Singh Date: Tue, 25 Jun 2019 22:09:54 +0100 Subject: .gitignore: Remove redundant pycache entries Python 3 only ever creates .pyc files inside the __pycache__ directory so ignoring just __pycache__ directory is sufficient. --- .gitignore | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index a61a975ac..e7b05fb84 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ # Compiled python modules. -src/buildstream/**/*.pyc -tests/**/*.pyc +__pycache__ # Generated C files src/buildstream/**/*.c @@ -33,10 +32,6 @@ tmp *.bst/ .tox/ -# Pycache, in case buildstream is ran directly from within the source -# tree -__pycache__/ - # Generated version file src/buildstream/__version__.py -- cgit v1.2.1