@@ -47,11 +47,6 @@ def main():
4747 bucket , access_key , secret_key = s3_config ()
4848 upload_node (bucket , access_key , secret_key , args .version )
4949
50- # Upload the SHASUMS.txt.
51- execute ([sys .executable ,
52- os .path .join (SOURCE_ROOT , 'script' , 'upload-checksums.py' ),
53- '-v' , args .version ])
54-
5550
5651def parse_args ():
5752 parser = argparse .ArgumentParser (description = 'upload sumsha file' )
@@ -110,8 +105,7 @@ def upload_node(bucket, access_key, secret_key, version):
110105 'atom-shell/dist/{0}' .format (version ), glob .glob ('node-*.tar.gz' ))
111106
112107 if PLATFORM == 'win32' :
113- target_arch = get_target_arch ()
114- if target_arch == 'ia32' :
108+ if get_target_arch () == 'ia32' :
115109 node_lib = os .path .join (DIST_DIR , 'node.lib' )
116110 else :
117111 node_lib = os .path .join (DIST_DIR , 'x64' , 'node.lib' )
@@ -125,7 +119,7 @@ def upload_node(bucket, access_key, secret_key, version):
125119 s3put (bucket , access_key , secret_key , DIST_DIR ,
126120 'atom-shell/dist/{0}' .format (version ), [node_lib ])
127121
128- # Upload the index.json
122+ # Upload the index.json.
129123 with scoped_cwd (SOURCE_ROOT ):
130124 atom_shell = os .path .join (OUT_DIR , 'atom.exe' )
131125 index_json = os .path .relpath (os .path .join (OUT_DIR , 'index.json' ))
0 commit comments