From aa65593c94f1e6f4126828d1596b332158d07de3 Mon Sep 17 00:00:00 2001 From: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> Date: Fri, 29 Nov 2024 19:11:29 +1100 Subject: [PATCH] Fix cargo-fmt in bin/ build.rs Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com> --- crates/bin/build.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/bin/build.rs b/crates/bin/build.rs index 69897fdc..ed3b0772 100644 --- a/crates/bin/build.rs +++ b/crates/bin/build.rs @@ -17,7 +17,9 @@ fn main() { println!("cargo:rerun-if-changed=manifest.rc"); println!("cargo:rerun-if-changed=windows.manifest"); - embed_resource::compile("manifest.rc", embed_resource::NONE).manifest_required().unwrap(); + embed_resource::compile("manifest.rc", embed_resource::NONE) + .manifest_required() + .unwrap(); }); let git = Command::new("git").arg("--version").spawn();