From 34c2d3102565c35c7a450806b0ddcb4da151a4c9 Mon Sep 17 00:00:00 2001 From: Yash Suthar Date: Tue, 11 Nov 2025 00:44:20 +0530 Subject: [PATCH 1/2] Test_auto_commit 01 Signed-off-by: Yash Suthar --- build.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build.rs b/build.rs index adebd659ade..8f481fd7298 100644 --- a/build.rs +++ b/build.rs @@ -8,10 +8,6 @@ fn main() { println!("cargo:warning=logo.ico not found, skipping icon embedding"); return; } - res.compile() - .map_err(|e| { - println!("cargo:warning=Failed to compile Windows resources: {e}"); - }) - .ok(); +res.compile().map_err(|e| println!("cargo:warning=Failed to compile Windows resources: {e}")).ok(); } } From c2e3925cb1d177db146256f264ca67fc29dde561 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 11 Nov 2025 03:50:18 +0000 Subject: [PATCH 2/2] Auto-format code [skip ci] --- build.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 8f481fd7298..4088bbcf89f 100644 --- a/build.rs +++ b/build.rs @@ -8,6 +8,8 @@ fn main() { println!("cargo:warning=logo.ico not found, skipping icon embedding"); return; } -res.compile().map_err(|e| println!("cargo:warning=Failed to compile Windows resources: {e}")).ok(); + res.compile() + .map_err(|e| println!("cargo:warning=Failed to compile Windows resources: {e}")) + .ok(); } }