aboutsummaryrefslogtreecommitdiff
path: root/minishell_test/config.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-11 17:53:54 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-11 17:53:54 +0100
commitf034ae19647f41cab5ce06eeca53ea0dae459f83 (patch)
tree70b0f5bb5e09941bb589b180dd0a21a8f2791b2c /minishell_test/config.py
parent904a033ae738e1c351f8fef71e2ec2418fc4db3d (diff)
downloadminishell_test-f034ae19647f41cab5ce06eeca53ea0dae459f83.tar.gz
minishell_test-f034ae19647f41cab5ce06eeca53ea0dae459f83.tar.bz2
minishell_test-f034ae19647f41cab5ce06eeca53ea0dae459f83.zip
Fixing #13 - change where sandbox binaries are stored, only create the binaries if they don't already exist
Diffstat (limited to 'minishell_test/config.py')
-rw-r--r--minishell_test/config.py4
1 files changed, 2 insertions, 2 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# 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"]