feat(lexer + grammar): inch les redirections ca marche

This commit is contained in:
matteo 2026-01-29 18:21:44 +01:00
parent 28749a2992
commit 25079bfebf
6 changed files with 77 additions and 46 deletions

View file

@ -200,7 +200,7 @@ struct ast *parse_simple_command(struct lexer_context *ctx)
}
if (prefix->type == AST_ASSIGNEMENT)
{
assignments = list_append(assignments, prefix)
assignments = list_append(assignments, prefix);
}
else if (prefix->type == AST_REDIR)
{