summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-06-11 03:19:16 +0700
committerSergey M․ <dstftw@gmail.com>2016-06-11 03:19:16 +0700
commit8afb663891fad5eddd91dbfa3c5b984795d8f8b8 (patch)
tree51eb05a4c6a98c9b76ea5866902d35dca3d31137
parent1df8afcc18723110b010c29d47f46aa4c51bd740 (diff)
downloadyoutube-dl-8afb663891fad5eddd91dbfa3c5b984795d8f8b8.tar.gz
youtube-dl-8afb663891fad5eddd91dbfa3c5b984795d8f8b8.tar.xz
youtube-dl-8afb663891fad5eddd91dbfa3c5b984795d8f8b8.zip
[update_latest.sh] Fix download links redirection (2)
-rwxr-xr-xupdate_latest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/update_latest.sh b/update_latest.sh
index 4aa6e4348..12c4f8cff 100755
--- a/update_latest.sh
+++ b/update_latest.sh
@@ -14,8 +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/download/\$1" >> downloads/.htaccess
+echo -e "RewriteRule ^(\d{4}\.\d{2}\.\d{2}(?:\.\d+)?/?)$ https://github.com/rg3/youtube-dl/releases/tag/\$1" >> downloads/.htaccess
+echo -e "RewriteRule ^(\d{4}\.\d{2}\.\d{2}(?:\.\d+)?/.+)$ https://github.com/rg3/youtube-dl/releases/download/\$1" >> downloads/.htaccess
 echo -e "RewriteRule latest(.*) /downloads/$1 [L,R=302]" >> downloads/.htaccess