From 7506af9147dd73a55aeb1b84e5f7f9705c08616d Mon Sep 17 00:00:00 2001 From: iff Date: Tue, 22 Apr 2025 15:38:02 +0200 Subject: [PATCH] feat: runtime general --- module-runtime-rules/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/module-runtime-rules/src/main.rs b/module-runtime-rules/src/main.rs index bf2ecc1..08050ed 100644 --- a/module-runtime-rules/src/main.rs +++ b/module-runtime-rules/src/main.rs @@ -35,5 +35,6 @@ fn main() -> Result<(), std::io::Error> { } rules::runtime_match(&executable, &shell, &last_command, &error_msg, &executables); + rules::runtime_match("_PR_GENERAL", &shell, &last_command, &error_msg, &executables); Ok(()) }