refactor(build): passing the rustfmt

This commit is contained in:
Raphael 2026-02-12 16:27:19 +01:00
parent c790d6de89
commit 64bd073b02
No known key found for this signature in database

View file

@ -75,10 +75,7 @@ fn commands() -> io::Result<()> {
)?; )?;
modules = modules + &String::from(MOD_PREFIX) + subdir + &String::from(";\n"); modules = modules + &String::from(MOD_PREFIX) + subdir + &String::from(";\n");
} }
write( write(String::from(COMMAND_DIR) + &String::from(MOD_FILE), modules)?;
String::from(COMMAND_DIR) + &String::from(MOD_FILE),
modules,
)?;
Ok(()) Ok(())
} }