From e7d4b44d054b2b1656dce4305d2d8a0ed2b0e78e Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sat, 31 Aug 2013 15:20:59 +0800 Subject: [PATCH] :lipstick: for node version and upload node.lib. --- script/create-dist.py | 2 +- script/upload.py | 14 +++++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/script/create-dist.py b/script/create-dist.py index 41aea20a9eab..a529fa7a7568 100755 --- a/script/create-dist.py +++ b/script/create-dist.py @@ -12,7 +12,7 @@ from lib.util import * ATOM_SHELL_VRESION = get_atom_shell_version() -NODE_VERSION = 'v0.8.15' +NODE_VERSION = 'v0.10.15' SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) DIST_DIR = os.path.join(SOURCE_ROOT, 'dist') diff --git a/script/upload.py b/script/upload.py index 7f65458cd190..7ff408c04dd4 100755 --- a/script/upload.py +++ b/script/upload.py @@ -19,7 +19,7 @@ TARGET_PLATFORM = { }[sys.platform] ATOM_SHELL_VRESION = get_atom_shell_version() -NODE_VERSION = 'v0.8.15' +NODE_VERSION = 'v0.10.15' SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) DIST_DIR = os.path.join(SOURCE_ROOT, 'dist') @@ -64,11 +64,19 @@ def dist_newer_than_head(): def upload(bucket, access_key, secret_key, version=ATOM_SHELL_VRESION): os.chdir(DIST_DIR) - s3put(bucket, access_key, secret_key, DIST_DIR, - 'atom-shell/{0}'.format(version), [DIST_NAME]) + # s3put(bucket, access_key, secret_key, DIST_DIR, + # 'atom-shell/{0}'.format(version), [DIST_NAME]) s3put(bucket, access_key, secret_key, DIST_DIR, 'atom-shell/dist/{0}'.format(NODE_VERSION), glob.glob('node-*.tar.gz')) + if TARGET_PLATFORM == 'win32': + out_dir = os.path.join(SOURCE_ROOT, 'out', 'Release') + node_lib = os.path.join(out_dir, 'node.lib') + s3put(bucket, access_key, secret_key, out_dir, + 'atom-shell/dist/{0}'.format(NODE_VERSION), [node_lib]) + s3put(bucket, access_key, secret_key, out_dir, + 'atom-shell/dist/{0}/x64'.format(NODE_VERSION), [node_lib]) + def update_version(bucket, access_key, secret_key): prefix = os.path.join(SOURCE_ROOT, 'dist')