mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Work around removal of remote files used by the build system
f5a8327415
This commit is contained in:
parent
8b43719baa
commit
d2ee7663f3
1 changed files with 3 additions and 1 deletions
|
@ -425,7 +425,9 @@ class MachCommands(CommandBase):
|
|||
if not os.path.exists(gst_lib_path):
|
||||
# Download GStreamer dependencies if they have not already been downloaded
|
||||
print("Downloading GStreamer dependencies")
|
||||
gst_url = "https://github.com/servo/libgstreamer_android_gen/blob/master/out/%s?raw=true" % gst_lib_zip
|
||||
gst_url = "https://github.com/servo/libgstreamer_android_gen/blob/" \
|
||||
"ebb0f0097fec985e0cef988c54a28c2ba06761aa/out/%s?raw=true" % gst_lib_zip
|
||||
print(gst_url)
|
||||
urllib.urlretrieve(gst_url, gst_lib_zip)
|
||||
zip_ref = zipfile.ZipFile(gst_lib_zip, "r")
|
||||
zip_ref.extractall(gst_dir)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue