mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-17 15:55:56 +00:00
14 lines
270 B
Bash
Executable file
14 lines
270 B
Bash
Executable file
#/bins/sh
|
|
set -e
|
|
|
|
version="$1"
|
|
|
|
if [ -z "$version" ]; then
|
|
echo "Usage: $0 version"
|
|
exit 1
|
|
fi
|
|
|
|
cd "$(dirname $(readlink -f $0))"
|
|
|
|
echo -n "$version" > latest_version
|
|
/bin/echo -e "RewriteEngine On\nRewriteRule ^(.*)$ /downloads/latest/$1 [L,R=302]" > latest/.htaccess
|