diff options
author | Chandan Singh <chandan@chandansingh.net> | 2019-06-25 22:09:54 +0100 |
---|---|---|
committer | Chandan Singh <chandan@chandansingh.net> | 2019-06-25 22:09:54 +0100 |
commit | 538be7ce70d07ceae8569eda3290408964373798 (patch) | |
tree | 42e27e82edc9cedc8a7c29bf6155e6d5747a70e0 /.gitignore | |
parent | 950d7e90a2d124254093a0f05a9b80ab6a8ed95c (diff) | |
download | buildstream-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-- | .gitignore | 7 |
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 |