Skip to content

Commit

Permalink
lol
Browse files Browse the repository at this point in the history
  • Loading branch information
MordechaiHadad committed Aug 7, 2024
1 parent ae60f65 commit 9184886
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/handlers/install_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ pub async fn start(
tokio::fs::remove_file(archive_path).await?;
tokio::fs::remove_file(checksum_path).await?;
return Err(anyhow!("Checksum mismatch!"));
}

info!("Checksum matched!");
tokio::fs::remove_file(checksum_path).await?;
Expand Down Expand Up @@ -686,7 +687,7 @@ async fn send_request(
};
let version = &version.tag_name;
let request_url =
format!("{url}/neovim/neovim/releases/download/{version}/{platform}.{file_type}",);
format!("{url}/neovim/neovim/releases/download/{version}/{platform}.{file_type}");

client
.get(request_url)
Expand Down

0 comments on commit 9184886

Please sign in to comment.