diff --git a/src/executor/executor_child.c b/src/executor/executor_child.c index 7f88381..1e64f47 100644 --- a/src/executor/executor_child.c +++ b/src/executor/executor_child.c @@ -6,7 +6,7 @@ /* By: qmennen +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/12 21:25:10 by willem #+# #+# */ -/* Updated: 2025/02/27 16:51:43 by qmennen ### ########.fr */ +/* Updated: 2025/02/27 18:12:48 by qmennen ### ########.fr */ /* */ /* ************************************************************************** */ @@ -44,7 +44,7 @@ void executor_child(t_minishell *msh, t_command *command) ft_putstr_fd(RED BOLD, 2); ft_putstr_fd("minishell: ", 2); ft_putstr_fd(command->args[0], 2); - ft_putstr_fd(": " RESET "is a directory\n", 2); + ft_putstr_fd(": " RESET "Is a directory\n", 2); } execve(path, command->args, environment_get_arr(msh)); }