electron/script/update.py

37 lines
877 B
Python
Raw Normal View History

2013-06-24 07:24:30 +00:00
#!/usr/bin/env python
import subprocess
import sys
from lib.util import *
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
NODE_VERSION = 'v0.10.12'
def main():
os.chdir(SOURCE_ROOT)
update_frameworks_and_node(NODE_VERSION)
update_gyp()
def update_frameworks_and_node(version):
2013-06-28 08:12:40 +00:00
if sys.platform == 'darwin':
uf = os.path.join(SOURCE_ROOT, 'script', 'update-frameworks.py')
subprocess.check_call([sys.executable, uf])
2013-06-24 07:24:30 +00:00
un = os.path.join(SOURCE_ROOT, 'script', 'update-node.py')
subprocess.check_call([sys.executable, un, '--version', version])
def update_gyp():
subprocess.check_call(['gyp', '-f', 'ninja', '--depth', '.', 'atom.gyp',
'-Icommon.gypi', '-Ivendor/brightray/brightray.gypi',
'-Dtarget_arch=ia32', '-Dlibrary=static_library'])
if __name__ == '__main__':
sys.exit(main())