From 4914dd67b6fce0efcf5c79b70965a5467bfc70ec Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 21 Aug 2013 12:16:40 +0800 Subject: [PATCH] Also upload node's headers to S3. --- script/upload.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/script/upload.py b/script/upload.py index 05dc8b859..348f44ba8 100755 --- a/script/upload.py +++ b/script/upload.py @@ -55,7 +55,9 @@ def upload(): version = get_atom_shell_version() s3put(bucket, access_key, secret_key, DIST_DIR, - 'atom-shell/{0}'.format(version), glob.glob('atom-shell*.zip')) + 'atom-shell/{0}'.format(version), ['atom-shell.zip']) + s3put(bucket, access_key, secret_key, DIST_DIR, + 'atom-shell/dist/{0}'.format(version), glob.glob('node-*.tar.gz')) update_version(bucket, access_key, secret_key)