X Tutup
Skip to content

Commit ec5e0ef

Browse files
MarshallOfSoundckerr
authored andcommitted
build: speed up windows download of external binaries (electron#17559)
1 parent 75b4db6 commit ec5e0ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/lib/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def download(text, url, path):
6868
web_file = urllib2.urlopen(url)
6969
file_size = int(web_file.info().getheaders("Content-Length")[0])
7070
downloaded_size = 0
71-
block_size = 128
71+
block_size = 4096
7272

7373
ci = os.environ.get('CI') is not None
7474

0 commit comments

Comments
 (0)
X Tutup