Browse Source

Script to update the latest/ directory (#925)

download-server-ytdl-org
Philipp Hagemeister 12 years ago
parent
commit
110c975154
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      update_latest.sh

+ 9
- 0
update_latest.sh View File

@ -0,0 +1,9 @@
#/bins/sh
set -e
version="$1"
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@@")
done

Loading…
Cancel
Save