Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-09-30 21:27:32 +0300
committerAdam Langley <agl@google.com>2015-09-30 21:32:05 +0300
commit3b27843b7c8b99ec213566500a82a398734f55c0 (patch)
tree2ad69d89b9b7f4abfb13c06cfe6a053e18b320cb /util
parent3fc9fe3f4ab8a244b647a587d4098040ac2d996b (diff)
Go's darwin filenames have changed.
32-bit is gone (wasn't being used anyway) and the -osx10.8 suffix is gone. Still looking into why the Linux bots are unhappy. Change-Id: If3a35d20fb1cc6f1e3f023d792dc78b5c5aac72a Reviewed-on: https://boringssl-review.googlesource.com/6061 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'util')
-rwxr-xr-xutil/bot/go/bootstrap.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/bot/go/bootstrap.py b/util/bot/go/bootstrap.py
index 1125619e..4a52d9eb 100755
--- a/util/bot/go/bootstrap.py
+++ b/util/bot/go/bootstrap.py
@@ -49,8 +49,7 @@ TOOLSET_VERSION = 'go1.5.1'
# Platform dependent portion of a download URL. See http://golang.org/dl/.
TOOLSET_VARIANTS = {
- ('darwin', 'x86-32'): 'darwin-386-osx10.8.tar.gz',
- ('darwin', 'x86-64'): 'darwin-amd64-osx10.8.tar.gz',
+ ('darwin', 'x86-64'): 'darwin-amd64.tar.gz',
('linux2', 'x86-32'): 'linux-386.tar.gz',
('linux2', 'x86-64'): 'linux-amd64.tar.gz',
('win32', 'x86-32'): 'windows-386.zip',