diff options
author | Sergey M․ <[email protected]> | 2016-06-11 02:20:39 +0700 |
---|---|---|
committer | Sergey M․ <[email protected]> | 2016-06-11 02:20:39 +0700 |
commit | 8c6f08911f366b2b2c1a8c2929206f1666beeba7 (patch) | |
tree | 70556ba830417812ed668d1210b90d838bf432bb | |
parent | 7fc3fe2b545cbae66b656899e40df4b4cd730417 (diff) | |
download | youtube-dl-8c6f08911f366b2b2c1a8c2929206f1666beeba7.tar.gz youtube-dl-8c6f08911f366b2b2c1a8c2929206f1666beeba7.zip |
[update_latest.sh] Redirect all releases to GitHub
-rwxr-xr-x | update_latest.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update_latest.sh b/update_latest.sh index 0144c7c44..6370aa7d7 100755 --- a/update_latest.sh +++ b/update_latest.sh @@ -11,5 +11,8 @@ fi cd "$(dirname $(readlink -f $0))" echo -n "$version" > latest_version -ln -sf downloads/latest downloads/$1 +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 latest(.*) /downloads/$1 [L,R=302]" >> downloads/.htaccess |