[Clean & Fix]
This commit is contained in:
parent
3b218411d0
commit
401d4890dc
7 changed files with 205 additions and 99 deletions
|
|
@ -108,7 +108,7 @@ async fn download_asset(url: &str) -> Result<NamedTempFile> {
|
|||
}
|
||||
|
||||
let tmp = NamedTempFile::new().context("failed to create temp file")?;
|
||||
let mut out = File::create(tmp.path()).context("failed to open temp file")?;
|
||||
let _out = File::create(tmp.path()).context("failed to open temp file")?;
|
||||
|
||||
let bytes = response
|
||||
.bytes()
|
||||
|
|
|
|||
Loading…
Reference in a new issue