[tor-commits] [Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40782: Fetch signatures from tb-build-04 and tb-build-05
Richard Pospesel (@richard)
git at gitlab.torproject.org
Wed Feb 15 18:41:36 UTC 2023
Richard Pospesel pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build
Commits:
851a5e7c by Nicolas Vigier at 2023-02-15T18:41:27+00:00
Bug 40782: Fetch signatures from tb-build-04 and tb-build-05
- - - - -
1 changed file:
- tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
Changes:
=====================================
tools/signing/download-unsigned-sha256sums-gpg-signatures-from-people-tpo
=====================================
@@ -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
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/851a5e7ca10c5bb0096d4b32daabbf2984a38df0
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/851a5e7ca10c5bb0096d4b32daabbf2984a38df0
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tor-commits/attachments/20230215/b2a60147/attachment-0001.htm>
More information about the tor-commits
mailing list