tazpkg rev 391

Fix: use ln -sf instead of ln -s to avoid errors.
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Dec 09 00:56:33 2010 +0100 (2010-12-09)
parents a3fd400ab9d2
children f5bb8c64ee4b
files tazpkg
line diff
     1.1 --- a/tazpkg	Thu Dec 09 00:54:52 2010 +0100
     1.2 +++ b/tazpkg	Thu Dec 09 00:56:33 2010 +0100
     1.3 @@ -376,7 +376,7 @@
     1.4  	for i in $mirrors; do
     1.5  		case "$i" in
     1.6  		http://*|ftp://*) wget -c $i$@ && break;;
     1.7 -		*) ln -s $i/$1 . && break;;
     1.8 +		*) ln -sf $i/$1 . && break;;
     1.9  		esac
    1.10  	done
    1.11  }