mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09: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
|
|
|