From 1df8afcc18723110b010c29d47f46aa4c51bd740 Mon Sep 17 00:00:00 2001 From: Sergey M․ Date: Sat, 11 Jun 2016 02:56:11 +0700 Subject: [update_latest.sh] Fix download links redirection --- update_latest.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 + + -- cgit 1.4.1