tazpkg rev 651

tazpkg: use busybox wget (less outpout)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 16 12:40:09 2014 +0100 (2014-02-16)
parents 3f40d757ab81
children a78eec2822e9
files tazpkg
line diff
     1.1 --- a/tazpkg	Sun Feb 16 12:34:43 2014 +0100
     1.2 +++ b/tazpkg	Sun Feb 16 12:40:09 2014 +0100
     1.3 @@ -471,7 +471,7 @@
     1.4  	for i in $mirrors; do
     1.5  		case "$i" in
     1.6  			# Mirror URL can have a trailing slash or not.
     1.7 -			http://*|ftp://*) wget -c ${i%/}/$@ && break ;;
     1.8 +			http://*|ftp://*) busybox wget -c ${i%/}/$@ && break ;;
     1.9  			*) ln -sf $i/$1 . && break ;;
    1.10  		esac
    1.11  	done