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/85...