Skip to content

Commit

Permalink
fix: Removed useless parts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sxmourai committed Jan 11, 2024
1 parent bb903a2 commit 2532ea5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,10 @@ fn update_ids() {
Ok(_) => {},
Err(e) => {println!("Failed to delete file, assuming it doesn't exist... {:?}", e)},
}
let mut _wget = std::process::Command::new("curl")
std::process::Command::new("curl")
.arg("https://pci-ids.ucw.cz/v2.2/pci.ids")
.arg("--output")
.arg("pciids/pci.ids")
.spawn().expect("Failed to fetch data");
_wget.wait().expect("Error fetching data");
.spawn().expect("Failed to fetch data")
.wait().expect("Error fetching data");
}

0 comments on commit 2532ea5

Please sign in to comment.