Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Matthew Finkel
tor-browser-build
Commits
5a274fb9
Unverified
Commit
5a274fb9
authored
Dec 06, 2017
by
boklm
Browse files
Bug 24475: Add support for Windows 64 to update-responses
parent
66f42407
Changes
2
Hide whitespace changes
Inline
Side-by-side
projects/release/update_responses_config.yml
View file @
5a274fb9
...
...
@@ -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
:
...
...
tools/update-responses/update_responses
View file @
5a274fb9
...
...
@@ -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;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment