From 387fe3441d2f1f02b8ff85e798eb1295f95b7e7f Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 12 Sep 2020 02:22:56 +0200 Subject: Added suite name autocompletion --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index 27d524e..a9a3b78 100644 --- a/src/config.py +++ b/src/config.py @@ -6,11 +6,10 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2020/09/11 15:51:31 by charles ### ########.fr # +# Updated: 2020/09/12 01:33:18 by charles ### ########.fr # # # # ############################################################################ # - ################################################################################ # Minishell configuration file # ################################################################################ @@ -32,6 +31,7 @@ MINISHELL_MAKE = True # path to reference shell (shell which will be compared minishell) # has to support the -c option (sh, bash and zsh support it) REFERENCE_PATH = "/bin/bash" +REFERENCE_ARGS = ["--posix"] # log file path LOG_PATH = "result.log" -- cgit