We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b29b3f commit 6451d57Copy full SHA for 6451d57
tools/aws_uploader.py
@@ -98,7 +98,10 @@ def aws_upload(upload_path, file_list):
98
if 'win64' in builder_name :
99
path_prefix = 'x64'
100
101
- if (f.startswith('node-v') or f.startswith('nw-header') or f == 'SHASUMS256.txt') and not ('_sdk_mac64' in builder_name) :
+ if (f == 'SHASUMS256.txt'):
102
+ continue
103
+
104
+ if (f.startswith('node-v') or f.startswith('nw-header')) and not ('_sdk_mac64' in builder_name) :
105
continue
106
107
if f.startswith('chromedriver') and 'sdk' not in builder_name :
0 commit comments