working
This commit is contained in:
parent
814554e208
commit
db62ec1d88
3 changed files with 39 additions and 41 deletions
|
|
@ -1,7 +1,8 @@
|
|||
use anyhow::Result;
|
||||
use reqwest::blocking::Client;
|
||||
use reqwest::redirect::Policy;
|
||||
|
||||
pub fn get_wget_list() -> Result<String, Box<dyn std::error::Error>> {
|
||||
pub fn get_wget_list() -> Result<String> {
|
||||
let client = Client::builder().redirect(Policy::none()).build()?;
|
||||
let res = client
|
||||
.get("https://www.linuxfromscratch.org/~thomas/multilib-m32/wget-list-sysv")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue