Mozilla/mozilla/testing/release/common/download_builds.sh
preed%mozilla.com c72ade1f3a Bug 371305: add --no-check-certificate to wget args; certain versions choke on the *.mozilla.org cert we use. patch=rhelmer, r=me.
git-svn-id: svn://10.0.0.236/trunk@221945 18797224-902f-48f8-a5cc-f745e15eee43
2007-03-15 22:39:10 +00:00

33 lines
768 B
Bash

download_builds() {
# cleanup
mkdir -p downloads/
rm -rf downloads/*
source_url="$1"
target_url="$2"
if [ -z "$source_url" ] || [ -z "$target_url" ]
then
"download_builds usage: <source_url> <target_url>"
exit 1
fi
cp update/partial.mar update/update.mar
for url in "$source_url" "$target_url"
do
source_file=`basename "$url"`
if [ -f "$source_file" ]; then rm "$source_file"; fi
#PARAMS="--user=user --password=pass"
cd downloads
if [ -f "$source_file" ]; then rm "$source_file"; fi
wget --no-check-certificate -nv $PARAMS "$url" 2>&1
if [ $? != 0 ]; then
echo "FAIL: Could not download source $source_file from $url"
echo "skipping.."
cd ../
continue
fi
cd ../
done
}