From 57be5156a87d379465c2d76a7a8db89d0c164682 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 23:45:59 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes (attempt 2/3) --- crates/llama-cpp-server/build.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/llama-cpp-server/build.rs b/crates/llama-cpp-server/build.rs index f91c9c535b3f..b59a76f9fc27 100644 --- a/crates/llama-cpp-server/build.rs +++ b/crates/llama-cpp-server/build.rs @@ -69,8 +69,7 @@ fn main() { make_output_binary(&out, "llama-server") }; - std::fs::rename(server_binary, &renamed_server_binary) - .expect("Failed to rename server binary"); + std::fs::rename(server_binary, &renamed_server_binary).expect("Failed to rename server binary"); copy_to_output(&renamed_server_binary) .expect("Failed to copy server binary to output directory"); }