summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorChandan Singh <chandan@chandansingh.net>2019-06-25 22:09:54 +0100
committerChandan Singh <chandan@chandansingh.net>2019-06-25 22:09:54 +0100
commit538be7ce70d07ceae8569eda3290408964373798 (patch)
tree42e27e82edc9cedc8a7c29bf6155e6d5747a70e0 /.gitignore
parent950d7e90a2d124254093a0f05a9b80ab6a8ed95c (diff)
downloadbuildstream-538be7ce70d07ceae8569eda3290408964373798.tar.gz
.gitignore: Remove redundant pycache entries
Python 3 only ever creates .pyc files inside the __pycache__ directory so ignoring just __pycache__ directory is sufficient.
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore7
1 files changed, 1 insertions, 6 deletions
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