diff options
author | Sergey M․ <[email protected]> | 2016-06-11 03:19:16 +0700 |
---|---|---|
committer | Sergey M․ <[email protected]> | 2016-06-11 03:19:16 +0700 |
commit | 8afb663891fad5eddd91dbfa3c5b984795d8f8b8 (patch) | |
tree | 51eb05a4c6a98c9b76ea5866902d35dca3d31137 | |
parent | 1df8afcc18723110b010c29d47f46aa4c51bd740 (diff) | |
download | youtube-dl-8afb663891fad5eddd91dbfa3c5b984795d8f8b8.tar.gz youtube-dl-8afb663891fad5eddd91dbfa3c5b984795d8f8b8.zip |
[update_latest.sh] Fix download links redirection (2)
-rwxr-xr-x | update_latest.sh | 4 |
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 |