summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-06-11 02:56:11 +0700
committerSergey M․ <dstftw@gmail.com>2016-06-11 02:56:11 +0700
commit1df8afcc18723110b010c29d47f46aa4c51bd740 (patch)
tree50f53ede108943832981c2daa285fc59f860e04f
parentb0035c3448a5c95f0748fcb9b0af983ecd8ba21e (diff)
downloadyoutube-dl-1df8afcc18723110b010c29d47f46aa4c51bd740.tar.gz
youtube-dl-1df8afcc18723110b010c29d47f46aa4c51bd740.tar.xz
youtube-dl-1df8afcc18723110b010c29d47f46aa4c51bd740.zip
[update_latest.sh] Fix download links redirection
-rwxr-xr-xupdate_latest.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/update_latest.sh b/update_latest.sh
index 6370aa7d7..4aa6e4348 100755
--- a/update_latest.sh
+++ b/update_latest.sh
@@ -14,5 +14,8 @@ echo -n "$version" > latest_version
 
 echo -e "RewriteEngine On" > downloads/.htaccess
 echo -e "RewriteRule ^$ https://github.com/rg3/youtube-dl/releases" >> downloads/.htaccess
-echo -e "RewriteRule ^(\d{4}\.\d{2}\.\d{2}.*)$ https://github.com/rg3/youtube-dl/releases/tag/\$1" >> downloads/.htaccess
+echo -e "RewriteRule ^(\d{4}\.\d{2}\.\d{2})/?$ https://github.com/rg3/youtube-dl/releases/tag/\$1" >> downloads/.htaccess
+echo -e "RewriteRule ^(\d{4}\.\d{2}\.\d{2}.*)$ https://github.com/rg3/youtube-dl/releases/download/\$1" >> downloads/.htaccess
 echo -e "RewriteRule latest(.*) /downloads/$1 [L,R=302]" >> downloads/.htaccess
+
+