From 9232d6840fdc741f5aff2e26369aebdb2d04a6c5 Mon Sep 17 00:00:00 2001 From: programadorhedonista Date: Fri, 4 Dec 2015 17:04:48 +0100 Subject: [PATCH] fix warning ``` $ unzip -t youtube-dl Archive: youtube-dl warning [youtube-dl]: 22 extra bytes at beginning or within zipfile (attempting to process anyway) testing: youtube_dl/YoutubeDL.py OK testing: youtube_dl/__init__.py OK testing: youtube_dl/__main__.py OK ... ``` --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f826c1685..5eb9d38ae 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,7 @@ youtube-dl: youtube_dl/*.py youtube_dl/*/*.py zip --quiet --junk-paths youtube-dl youtube_dl/__main__.py echo '#!$(PYTHON)' > youtube-dl cat youtube-dl.zip >> youtube-dl + zip --adjust-sfx youtube-dl rm youtube-dl.zip chmod a+x youtube-dl