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

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

Issue 2338753003: DevTools: Make eslint mandatory and check node.js/npm modules in presubmit (Closed)
Patch Set: Fix node.py Created 4 years, 2 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
Index: third_party/WebKit/Source/devtools/scripts/local_node/node.py
diff --git a/third_party/WebKit/Source/devtools/scripts/buildbot/node.py b/third_party/WebKit/Source/devtools/scripts/local_node/node.py
similarity index 98%
rename from third_party/WebKit/Source/devtools/scripts/buildbot/node.py
rename to third_party/WebKit/Source/devtools/scripts/local_node/node.py
index 55c0156d4ccf677b7da248b8d29201584b509549..09fd0f2dd14ccc14b02351efa0a2c4ff35b0e840 100755
--- a/third_party/WebKit/Source/devtools/scripts/buildbot/node.py
+++ b/third_party/WebKit/Source/devtools/scripts/local_node/node.py
@@ -39,7 +39,7 @@ def install_latest_node_js(version, tmp_dir):
if sys.platform == 'win32':
target = 'node.exe'
elif sys.platform == 'darwin':
- target = 'node-v%s-darwin-x86.tar.gz' % version
+ target = 'node-v%s-darwin-x64.tar.gz' % version
elif sys.platform == 'linux2':
target = 'node-v%s-linux-x86.tar.gz' % version
else:

Powered by Google App Engine
This is Rietveld 408576698