Unverified Commit 5a274fb9 authored by boklm's avatar boklm
Browse files

Bug 24475: Add support for Windows 64 to update-responses

parent 66f42407
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@ tmp_dir: '[% c("tmp_dir") %]'
appname_marfile: tor-browser
appname_bundle_osx: TorBrowser
appname_bundle_linux: tor-browser
appname_bundle_win: torbrowser-install
appname_bundle_win32: torbrowser-install
appname_bundle_win64: torbrowser-install-win64
releases_dir: [% path(c('output_dir')) %]/[% c("var/signed_status") %]
download:
    archive_url: https://archive.torproject.org/tor-package-archive/torbrowser
@@ -17,6 +18,7 @@ build_targets:
        - WINNT_x86-gcc3
        - WINNT_x86-gcc3-x86
        - WINNT_x86-gcc3-x64
    win64: WINNT_x86_64-gcc3-x64
    osx32: Darwin_x86-gcc3
    osx64: Darwin_x86_64-gcc3
channels:
+3 −1
Original line number Diff line number Diff line
@@ -136,7 +136,9 @@ sub get_version_downloads {
            ($os, $lang) = ('osx64', $1);
        } elsif ($file =~ m/^$config->{appname_bundle_linux}-(linux32|linux64)-${version}_(.+).tar.xz$/) {
            ($os, $lang) = ($1, $2);
        } elsif ($file =~ m/^$config->{appname_bundle_win}-${version}_(.+).exe$/) {
        } elsif ($file =~ m/^$config->{appname_bundle_win64}-${version}_(.+).exe$/) {
            ($os, $lang) = ('win64', $1);
        } elsif ($file =~ m/^$config->{appname_bundle_win32}-${version}_(.+).exe$/) {
            ($os, $lang) = ('win32', $1);
        } else {
            next;