diff options
author | Philipp Hagemeister <[email protected]> | 2014-04-30 10:21:09 +0200 |
---|---|---|
committer | Philipp Hagemeister <[email protected]> | 2014-04-30 10:21:09 +0200 |
commit | 17e311adf0e53fe486c1449c3ea5342a9f2560b2 (patch) | |
tree | 40a1fceb42164df80abe1a8d9c0575a54a063e8f | |
parent | 809987a65c4e4af438bdafc940c53a04cd9abaa8 (diff) | |
download | youtube-dl-17e311adf0e53fe486c1449c3ea5342a9f2560b2.tar.gz youtube-dl-17e311adf0e53fe486c1449c3ea5342a9f2560b2.zip |
Add latest symlink in downloads (Fixes #2835)
-rwxr-xr-x | update_latest.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/update_latest.sh b/update_latest.sh index 355a22a6d..a39c90144 100755 --- a/update_latest.sh +++ b/update_latest.sh @@ -14,5 +14,6 @@ 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 +ln -sf --no-target-directory "downloads/$version" "downloads/latest" echo -n "$version" > latest/version |