tazpkg diff modules/flavor @ rev 908

modules/convert: fix convert_tcz
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue May 24 14:51:19 2016 +0300 (2016-05-24)
parents d6cbd0c5f273
children 50421cb50644
line diff
     1.1 --- a/modules/flavor	Mon Oct 05 03:53:47 2015 +0300
     1.2 +++ b/modules/flavor	Tue May 24 14:51:19 2016 +0300
     1.3 @@ -19,7 +19,7 @@
     1.4  	case "$1" in
     1.5  		# Mirror URL can have a trailing slash or not.
     1.6  		http://* | https://* | ftp://*)
     1.7 -			busybox wget -c -q -T 30 -U $UA ${1%/}/$2 2>/dev/null && break ;;
     1.8 +			wget -c -q -T 30 -U $UA ${1%/}/$2 2>/dev/null && break ;;
     1.9  		*)
    1.10  			ln -sf ${1%/}/$2 . && break ;;
    1.11  	esac