1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-11 18:30:14 +02:00

[package] base-files: fix test experession for sysupgrade

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@16310 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
acinonyx 2009-06-03 18:15:04 +00:00
parent 231bfe4d8a
commit 5b0cf9ddca

View File

@ -107,7 +107,7 @@ get_image() {
local from="$1"
local conc="cat"
[ $GZIPED -eq 1 ] && conc="zcat"
[ "$GZIPED" -eq 1 ] && conc="zcat"
case "$from" in
http://*|ftp://*) wget -O- -q "$from" | "$conc";;