richard pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits: 7105556c by Nicolas Vigier at 2023-10-23T15:11:48+02:00 Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json
Due to a typo, downloads-windows-x86_64.json and downloads-linux-x86_64.json were not created.
- - - - -
1 changed file:
- tools/update-responses/update_responses
Changes:
===================================== tools/update-responses/update_responses ===================================== @@ -165,9 +165,9 @@ sub get_perplatform_downloads { my $os; if ($file =~ m/^$config->{appname_bundle}-macos-$version.dmg$/) { $os = 'macos'; - } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-86_64)-${version}.tar.xz$/) { + } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) { $os = $1; - } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-86_64)-portable-${version}.exe$/) { + } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/) { $os = $1; } elsif ($file =~ m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/) { $os = $1;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/71...
tbb-commits@lists.torproject.org