mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
16 lines
206 B
Bash
Executable file
16 lines
206 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
|
|
ln -sf downloads/latest downloads/$1
|
|
|