From 64bd073b02052f29c72eb7f358d853c3fa0c0f7f Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 Feb 2026 16:27:19 +0100 Subject: [PATCH] refactor(build): passing the rustfmt --- build.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/build.rs b/build.rs index 12be52b..9f5ebab 100644 --- a/build.rs +++ b/build.rs @@ -75,10 +75,7 @@ fn commands() -> io::Result<()> { )?; modules = modules + &String::from(MOD_PREFIX) + subdir + &String::from(";\n"); } - write( - String::from(COMMAND_DIR) + &String::from(MOD_FILE), - modules, - )?; + write(String::from(COMMAND_DIR) + &String::from(MOD_FILE), modules)?; Ok(()) }