Skip to content
Prev Previous commit
Next Next commit
[autofix.ci] apply automated fixes
  • Loading branch information
autofix-ci[bot] authored Nov 24, 2025
commit 2f73f8c0cf6635aefa4b84a09dab036152d1b0ec
3 changes: 1 addition & 2 deletions src/plugins/asdf_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ impl AsdfPlugin {
async fn install_from_zip(&self, url: &str, pr: &dyn SingleReport) -> eyre::Result<()> {
let temp_dir = tempfile::tempdir()?;
let temp_archive = temp_dir.path().join("archive.zip");
HTTP.download_file(url, &temp_archive, Some(pr))
.await?;
HTTP.download_file(url, &temp_archive, Some(pr)).await?;

pr.set_message("extracting zip file".to_string());

Expand Down
Loading