0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-11-21 15:04:33 -05:00

Fix creation of invalid librusty_v8.a (#1059)

This commit is contained in:
Will Glozer 2022-08-26 23:16:20 +09:00 committed by GitHub
parent 169d5d6ea0
commit 746f7a3a56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -397,6 +397,7 @@ fn download_file(url: String, filename: PathBuf) {
println!("Python downloader failed, trying with curl.");
Command::new("curl")
.arg("-L")
.arg("-f")
.arg("-s")
.arg("-o")
.arg(&tmpfile)