From f034ae19647f41cab5ce06eeca53ea0dae459f83 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 11 Feb 2021 17:53:54 +0100 Subject: Fixing #13 - change where sandbox binaries are stored, only create the binaries if they don't already exist --- minishell_test/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'minishell_test/config.py') diff --git a/minishell_test/config.py b/minishell_test/config.py index 493652c..1497d0e 100644 --- a/minishell_test/config.py +++ b/minishell_test/config.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2021/01/31 04:41:29 by charles ### ########.fr # +# Updated: 2021/02/11 17:51:48 by charles ### ########.fr # # # # ############################################################################ # @@ -50,7 +50,7 @@ LOG_PATH = "result.log" SANDBOX_PATH = "sandbox" # where the availables commands are stored -EXECUTABLES_PATH = "./bin" +EXECUTABLES_PATH = "/tmp/minishell_test_bin" # commands available in test" AVAILABLE_COMMANDS = ["rmdir", "env", "cat", "touch", "ls", "grep", "sh", "head"] -- cgit