aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-10 15:07:30 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-10 15:07:30 +0200
commitc0b1a90cf9c52a0c9b1623ac695516031d5ccdba (patch)
treeb286ff19de9e57eb1948f751072f09dc3e79f8fc /config.py
parent2de1bf6e7dbda85ca3bb4ad77edac611a04b1ae3 (diff)
downloadminishell_test-c0b1a90cf9c52a0c9b1623ac695516031d5ccdba.tar.gz
minishell_test-c0b1a90cf9c52a0c9b1623ac695516031d5ccdba.tar.bz2
minishell_test-c0b1a90cf9c52a0c9b1623ac695516031d5ccdba.zip
Updated README, Added auto build
Diffstat (limited to 'config.py')
-rw-r--r--config.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.py b/config.py
index f7b169b..e05c36b 100644
--- a/config.py
+++ b/config.py
@@ -6,7 +6,7 @@
# By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/07/15 18:24:19 by charles #+# #+# #
-# Updated: 2020/07/19 20:29:52 by charles ### ########.fr #
+# Updated: 2020/09/10 13:54:27 by charles ### ########.fr #
# #
# ############################################################################ #
@@ -19,6 +19,9 @@ MINISHELL_DIR = ".."
# minishell executable
MINISHELL_EXEC = "minishell"
+# build minishell before executing the test if set to True
+MINISHELL_BUILD = 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"