mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
Fix tarball download function.
We were using Python's requests library and it was automatically uncompressing some tarballs. Switch to using raw requests to avoid that.
This commit is contained in:
parent
e0297e50c5
commit
db27ef0049
1 changed files with 6 additions and 2 deletions
8
sysa.py
8
sysa.py
|
|
@ -76,8 +76,12 @@ class SysA:
|
|||
# Actually download the file
|
||||
if not os.path.isfile(abs_file_name):
|
||||
print("Downloading: %s" % (file_name))
|
||||
request = requests.get(url, allow_redirects=True)
|
||||
open(abs_file_name, 'wb').write(request.content)
|
||||
response = requests.get(url, allow_redirects=True, stream=True)
|
||||
if response.status_code == 200:
|
||||
with open(abs_file_name, 'wb') as target_file:
|
||||
target_file.write(response.raw.read())
|
||||
else:
|
||||
raise Exception("Download failed.")
|
||||
|
||||
# Check SHA256 hash
|
||||
self.check_file(abs_file_name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue