From bceabcb382f55b13d64d9de276b09bd90f736707 Mon Sep 17 00:00:00 2001 From: Quinten Mennen Date: Thu, 27 Feb 2025 16:01:11 +0100 Subject: [PATCH] fix: message --- src/executor/executor_child.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/executor/executor_child.c b/src/executor/executor_child.c index cebe4c9..41afdb5 100644 --- a/src/executor/executor_child.c +++ b/src/executor/executor_child.c @@ -39,6 +39,7 @@ void executor_child(t_minishell *msh, t_command *command) if (is_dir(path)) { 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); }