mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-14 13:25:38 +00:00
Allow latest to be called from everywhere
This commit is contained in:
parent
c052029267
commit
abb88dcb2f
2 changed files with 3 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -2,4 +2,4 @@
|
|||
downloads/*
|
||||
updates_key.pem
|
||||
youtube_dl.egg-info
|
||||
|
||||
latest/*
|
|
@ -8,6 +8,8 @@ if [ -z "$version" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd "$(dirname $(readlink -f $0))"
|
||||
|
||||
ln -sf ../downloads/$version latest/directory
|
||||
for f in $(ls "downloads/$version/"); do \
|
||||
ln -sf "../downloads/$version/$f" latest/$(echo $f | sed -e "s@-$version@@")
|
||||
|
|
Loading…
Reference in a new issue