Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Unified Diff: third_party/WebKit/Source/devtools/scripts/buildbot/node.py

Issue 2303273003: DevTools: Bump node.js version for buildbot (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/scripts/buildbot/node.py
diff --git a/third_party/WebKit/Source/devtools/scripts/buildbot/node.py b/third_party/WebKit/Source/devtools/scripts/buildbot/node.py
index 5bb6e6cf298324b007eb461a3f4bf8d9219b47da..55c0156d4ccf677b7da248b8d29201584b509549 100755
--- a/third_party/WebKit/Source/devtools/scripts/buildbot/node.py
+++ b/third_party/WebKit/Source/devtools/scripts/buildbot/node.py
@@ -13,8 +13,8 @@ import urllib2
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
-DEFAULT_VERSION = '0.12.2'
-BUCKET = 'chromium-infra-bins'
+DEFAULT_VERSION = '4.5.0'
+BUCKET = 'chromium-nodejs'
def install_latest_node_js(version, tmp_dir):
@@ -46,7 +46,7 @@ def install_latest_node_js(version, tmp_dir):
raise Exception('Unrecognized platform %s' % sys.platform)
dest = os.path.join(tmp_dir, 'node_download')
- url = 'https://storage.googleapis.com/%s/node/%s/%s' % (
+ url = 'https://storage.googleapis.com/%s/%s/%s' % (
BUCKET, version, target)
print('Fetching %s' % url)
u = urllib2.urlopen(url)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698