about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-06-17 17:09:24 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-06-17 17:09:24 +0800
commit4f90d2aeacccab6dc461e92236480701c4a0900b (patch)
treee904496f1b127f711445875b050a3518dd34fb20 /Makefile
parentb230fefc3c436b4d3ff278a11552b8a964b7056e (diff)
downloadyoutube-dl-4f90d2aeacccab6dc461e92236480701c4a0900b.tar.gz
youtube-dl-4f90d2aeacccab6dc461e92236480701c4a0900b.tar.xz
youtube-dl-4f90d2aeacccab6dc461e92236480701c4a0900b.zip
[Makefile] Excluding __pycache__ correctly (#13400)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 023556391..84ccce2b3 100644
--- a/Makefile
+++ b/Makefile
@@ -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' \