From 687f38523b7671fbd338892a5b49559cd7ba9841 Mon Sep 17 00:00:00 2001 From: Matteo Flebus Date: Thu, 22 Jan 2026 12:08:51 +0100 Subject: [PATCH] fix(main_loop): no double echo --- src/main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.c b/src/main.c index a6b18a7..b86a9a7 100644 --- a/src/main.c +++ b/src/main.c @@ -81,9 +81,6 @@ int main(int argc, char **argv) ast_print_dot(command_ast); } - // Call the executor with the AST - return_code = execution(command_ast); - // Main parse-execute loop while (command_ast != NULL && command_ast->type != AST_END) {