diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-06-17 17:09:24 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-06-17 17:09:24 +0800 |
commit | 4f90d2aeacccab6dc461e92236480701c4a0900b (patch) | |
tree | e904496f1b127f711445875b050a3518dd34fb20 /Makefile | |
parent | b230fefc3c436b4d3ff278a11552b8a964b7056e (diff) |
[Makefile] Excluding __pycache__ correctly (#13400)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ youtube-dl.tar.gz: youtube-dl README.md README.txt youtube-dl.1 youtube-dl.bash- --exclude '*.pyc' \ --exclude '*.pyo' \ --exclude '*~' \ - --exclude '__pycache' \ + --exclude '__pycache__' \ --exclude '.git' \ --exclude 'testdata' \ --exclude 'docs/_build' \ |