fix(main_loop): no double echo

This commit is contained in:
Matteo Flebus 2026-01-22 12:08:51 +01:00
parent 8f5733be19
commit 687f38523b

View file

@ -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)
{