fix: args have now a env var replacement ex: 0 -> 0
This commit is contained in:
@ -31,7 +31,7 @@ int ft_args_parse(t_data *data, char *cmd_str, t_cmd *cmd)
|
||||
if (tab == NULL)
|
||||
return (1);
|
||||
i = 0;
|
||||
while (tab[i] == NULL)
|
||||
while (tab[i] != NULL)
|
||||
{
|
||||
str = ft_env_filler(data, tab[i]);
|
||||
if (str == NULL)
|
Reference in New Issue
Block a user