Update node version to 0.13.0.
This commit is contained in:
parent
6a891be0e4
commit
d0abc38afe
2 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@ import argparse
|
|||
import os
|
||||
import sys
|
||||
|
||||
from lib.config import LIBCHROMIUMCONTENT_COMMIT, BASE_URL
|
||||
from lib.config import LIBCHROMIUMCONTENT_COMMIT, BASE_URL, NODE_VERSION
|
||||
from lib.util import execute, scoped_cwd
|
||||
|
||||
|
||||
|
@ -61,6 +61,7 @@ def update_node_modules(dirname):
|
|||
|
||||
|
||||
def update_atom_modules(dirname):
|
||||
os.environ['ATOM_NODE_VERSION'] = NODE_VERSION[1:]
|
||||
with scoped_cwd(dirname):
|
||||
apm = os.path.join(SOURCE_ROOT, 'node_modules', '.bin', 'apm')
|
||||
if sys.platform in ['win32', 'cygwin']:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
import platform
|
||||
import sys
|
||||
|
||||
NODE_VERSION = 'v0.11.10'
|
||||
NODE_VERSION = 'v0.11.13'
|
||||
BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'
|
||||
LIBCHROMIUMCONTENT_COMMIT = 'e6aebd2156034b12e869d8905b22c088b2dc42ea'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue