From a5c0cda1e670d983599a4b0b561fcf430bfc1359 Mon Sep 17 00:00:00 2001 From: morde Date: Mon, 19 Aug 2024 15:16:03 +0300 Subject: [PATCH] remove debug statement, i need to squash these commits --- src/handlers/install_handler.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/handlers/install_handler.rs b/src/handlers/install_handler.rs index a4f3a33..d1b3e21 100644 --- a/src/handlers/install_handler.rs +++ b/src/handlers/install_handler.rs @@ -147,8 +147,6 @@ pub async fn start( downloaded_checksum.file_name, downloaded_checksum.file_format )); - println!("{} {}", archive_path.display(), checksum_path.display()); - if !sha256cmp(&archive_path, &checksum_path)? { tokio::fs::remove_file(archive_path).await?; tokio::fs::remove_file(checksum_path).await?;