do not use curl for the complete test, use wget instead b=371305 r=preed

git-svn-id: svn://10.0.0.236/trunk@221904 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rhelmer%mozilla.com 2007-03-15 00:28:12 +00:00
parent fef42c7f2e
commit be77e98618
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ download_mars () {
test_only="$3"
echo "Using $update_url"
curl -sk $update_url > update.xml
wget -q -O update.xml $update_url
mkdir -p update/
if [ -z $only ]; then

View File

@ -109,7 +109,7 @@ do
update_path="$product/$release/$build_id/$platform/$locale/$channel"
mkdir -p updates/$update_path/complete
mkdir -p updates/$update_path/partial
curl -ks "${aus_server}/update/1/$update_path/update.xml" $patch_type > updates/$update_path/$patch_type/update.xml
wget -q -O $patch_type updates/$update_path/$patch_type/update.xml "${aus_server}/update/1/$update_path/update.xml"
fi
if [ "$runmode" == "$COMPLETE" ]