mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
test: Avoid duplicate curl call in get_previous_releases.py
This commit is contained in:
parent
55d663cb15
commit
fa5aeab3cb
1 changed files with 3 additions and 14 deletions
|
@ -133,20 +133,9 @@ def download_binary(tag, args) -> int:
|
|||
|
||||
print('Fetching: {tarballUrl}'.format(tarballUrl=tarballUrl))
|
||||
|
||||
header, status = subprocess.Popen(
|
||||
['curl', '--head', tarballUrl], stdout=subprocess.PIPE).communicate()
|
||||
if re.search("404 Not Found", header.decode("utf-8")):
|
||||
print("Binary tag was not found")
|
||||
return 1
|
||||
|
||||
curlCmds = [
|
||||
['curl', '--remote-name', tarballUrl]
|
||||
]
|
||||
|
||||
for cmd in curlCmds:
|
||||
ret = subprocess.run(cmd).returncode
|
||||
if ret:
|
||||
return ret
|
||||
ret = subprocess.run(['curl', '--fail', '--remote-name', tarballUrl]).returncode
|
||||
if ret:
|
||||
return ret
|
||||
|
||||
hasher = hashlib.sha256()
|
||||
with open(tarball, "rb") as afile:
|
||||
|
|
Loading…
Add table
Reference in a new issue