mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-02 16:37:59 +09:00
19 lines
388 B
Bash
Executable File
19 lines
388 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))"
|
|
|
|
ln -sf --no-target-directory ../downloads/$version latest/directory
|
|
for f in $(ls "downloads/$version/"); do \
|
|
ln -sf --no-target-directory "../downloads/$version/$f" latest/$(echo $f | sed -e "s@-$version@@")
|
|
done
|
|
echo -n "$version" > latest/version
|
|
|