Skip to content
Snippets Groups Projects
Unverified Commit 4003aeea authored by boklm's avatar boklm
Browse files

Bug 40782: Fetch signatures from tb-build-04 and tb-build-05

parent 01391c77
Branches
Tags
1 merge request!656download-unsigned-sha256sums-gpg-signatures-from-people-tpo updates
......@@ -9,10 +9,18 @@ do
do
tmpfile=$(mktemp)
chmod 644 "$tmpfile"
wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_version_build/$file" || \
wget -q -O "$tmpfile" "https://people.torproject.org/~$builder/builds/tor-browser/$tbb_version-build$tbb_version_build/$file" || \
wget -q -O "$tmpfile" "https://tb-build-03.torproject.org/~$builder/builds/tor-browser/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file" && \
mv "$tmpfile" "$signed_version_dir/$file-$builder" && echo "Added $file-$builder"
for url in \
"https://people.torproject.org/~$builder/builds/$tbb_version-build$tbb_version_build/$file" \
"https://people.torproject.org/~$builder/builds/tor-browser/$tbb_version-build$tbb_version_build/$file" \
"https://tb-build-04.torproject.org/~$builder/builds/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file" \
"https://tb-build-05.torproject.org/~$builder/builds/$tbb_version_type/unsigned/$tbb_version-build$tbb_version_build/$file"
do
if wget -q -O "$tmpfile" "$url"; then
mv "$tmpfile" "$signed_version_dir/$file-$builder"
echo "Added $file-$builder"
break
fi
done
done
done
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment