mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
36 lines
926 B
Bash
36 lines
926 B
Bash
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
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
|
|
|
|
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
|
|
}
|