[tbb-commits] [Git][tpo/applications/tor-browser-build][main] Bug 40752: Fix urls in download-android-*.json files
boklm (@boklm)
git at gitlab.torproject.org
Tue Jan 24 12:05:30 UTC 2023
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
f6f4afaa by Nicolas Vigier at 2023-01-24T13:04:03+01:00
Bug 40752: Fix urls in download-android-*.json files
Fix the regexp used to find android apk files (to exclude .apk.asc
files).
- - - - -
1 changed file:
- tools/update-responses/update_responses
Changes:
=====================================
tools/update-responses/update_responses
=====================================
@@ -170,7 +170,7 @@ sub get_perplatform_downloads {
$os = 'windows-x86_64';
} elsif ($file =~ m/^$config->{appname_bundle_win32}-${version}_(.+).exe$/) {
$os = 'windows-i686';
- } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk/) {
+ } elsif ($file =~ m/^$config->{appname_bundle_android}-${version}-(android-armv7|android-x86|android-x86_64|android-aarch64)-multi.apk$/) {
$os = $1;
} else {
next;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f6f4afaa298d541823331df2a24dea01a10cbc32
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f6f4afaa298d541823331df2a24dea01a10cbc32
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/tbb-commits/attachments/20230124/2ea0e3ad/attachment.htm>
More information about the tbb-commits
mailing list