diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-13 12:03:45 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-13 12:07:50 +0200 |
| commit | 372f432cda719dab45ebc50464f448017beacbe1 (patch) | |
| tree | bc939324ccedd1d33b06ffe2ad9ecd17bee3678a /src/config.py | |
| parent | 740b810ab1aaa3506d004d01f21e3cfc270fbcfc (diff) | |
| download | minishell_test-372f432cda719dab45ebc50464f448017beacbe1.tar.gz minishell_test-372f432cda719dab45ebc50464f448017beacbe1.tar.bz2 minishell_test-372f432cda719dab45ebc50464f448017beacbe1.zip | |
Added env variable for reference shell arguments
Diffstat (limited to 'src/config.py')
| -rw-r--r-- | src/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.py b/src/config.py index 7092fea..ab5a922 100644 --- a/src/config.py +++ b/src/config.py @@ -6,7 +6,7 @@ # By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2020/09/12 16:56:23 by charles ### ########.fr # +# Updated: 2020/09/13 11:48:55 by charles ### ########.fr # # # # ############################################################################ # @@ -31,7 +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"] +REFERENCE_ARGS = [] # ["--posix"] # log file path LOG_PATH = "result.log" |
