[tbb-commits] [Git][tpo/applications/tor-browser-build][maint-12.0] Bug 40752: Fix urls in download-android-*.json files
boklm (@boklm)
git at gitlab.torproject.org
Tue Jan 24 12:06:14 UTC 2023
boklm pushed to branch maint-12.0 at The Tor Project / Applications / tor-browser-build
Commits:
855a1723 by Nicolas Vigier at 2023-01-24T13:05:55+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/855a1723d903e320d260e295b457a67f8ebfd2de
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/855a1723d903e320d260e295b457a67f8ebfd2de
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/fbd7dae9/attachment-0001.htm>
More information about the tbb-commits
mailing list