# HG changeset patch # User Antoine Bodin # Date 1291852593 -3600 # Node ID 7da120aaf23296fc7a74cc3a677ff0d1002c8a94 # Parent a3fd400ab9d271f8347b8450bfe0b68f1e1fe5d9 Fix: use ln -sf instead of ln -s to avoid errors. diff -r a3fd400ab9d2 -r 7da120aaf232 tazpkg --- a/tazpkg Thu Dec 09 00:54:52 2010 +0100 +++ b/tazpkg Thu Dec 09 00:56:33 2010 +0100 @@ -376,7 +376,7 @@ for i in $mirrors; do case "$i" in http://*|ftp://*) wget -c $i$@ && break;; - *) ln -s $i/$1 . && break;; + *) ln -sf $i/$1 . && break;; esac done }