From 32b3bd72b53fb8da8c9602f0cad551e6051ffbe0 Mon Sep 17 00:00:00 2001 From: Sergio Date: Sat, 14 Feb 2026 02:05:49 +0100 Subject: [PATCH] fix: prompt was not being requested to hashmap --- src/minishell.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/minishell.c b/src/minishell.c index 2708cd8..838a028 100644 --- a/src/minishell.c +++ b/src/minishell.c @@ -6,7 +6,7 @@ /* By: sede-san exit) { if (isatty(STDIN_FILENO)) - line = readline(DEFAULT_PS1); + line = readline(get_var("PS1", minishell)); else line = get_next_line(STDIN_FILENO); handle_sigint_status(minishell);