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

Bug 40752: Fix urls in download-android-*.json files

Fix the regexp used to find android apk files (to exclude .apk.asc
files).
parent 6c1adab8
Branches
Tags
No related merge requests found
......@@ -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;
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment