This commit is contained in:
gazhonsepaskwa
2025-02-04 14:27:27 +01:00
parent eafa6c47b6
commit 079c627577
2 changed files with 19 additions and 10 deletions

View File

@@ -82,12 +82,8 @@ int main(int ac, char **av, char **envp)
{
while (!input || !input[0])
input = powerline();
ft_debug("input: %s\n", input);
ft_debug("powerline\n");
msh->head = parser(input, msh);
ft_debug("parsed\n");
msh->ex_code = execute_command(msh->head);
ft_debug("executed\n");
free(input);
input = NULL;
}