Skip to content

Commit 6451d57

Browse files
committed
skip SHASUMS256.txt in uploader
As it's generated in the nightly builder
1 parent 6b29b3f commit 6451d57

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tools/aws_uploader.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ def aws_upload(upload_path, file_list):
9898
if 'win64' in builder_name :
9999
path_prefix = 'x64'
100100

101-
if (f.startswith('node-v') or f.startswith('nw-header') or f == 'SHASUMS256.txt') and not ('_sdk_mac64' in builder_name) :
101+
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) :
102105
continue
103106

104107
if f.startswith('chromedriver') and 'sdk' not in builder_name :

0 commit comments

Comments
 (0)