This commit is contained in:
Cheng Zhao 2013-08-31 15:20:59 +08:00
Π ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒ 30c9cd4318
ΠšΠΎΠΌΠΌΠΈΡ‚ e7d4b44d05
2 ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ²: 12 Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠΉ ΠΈ 4 ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠΉ

ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»

@ -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')

ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»

@ -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')