From 385700eab531699a973f2a37489f3d00508e1d39 Mon Sep 17 00:00:00 2001 From: pandaadir05 Date: Fri, 21 Nov 2025 14:39:04 +0200 Subject: [PATCH] fixing cicd formatting code --- ghost-core/src/yara_engine.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghost-core/src/yara_engine.rs b/ghost-core/src/yara_engine.rs index 05583dc..ca57428 100644 --- a/ghost-core/src/yara_engine.rs +++ b/ghost-core/src/yara_engine.rs @@ -189,7 +189,11 @@ impl DynamicYaraEngine { log::error!("Failed to compile {}: {}", rule_file.display(), e); // Don't continue - compiler was consumed, return with error return Err(GhostError::Configuration { - message: format!("Failed to compile {}: {}", rule_file.display(), e), + message: format!( + "Failed to compile {}: {}", + rule_file.display(), + e + ), }); } }