From 54f1098dcf4776fbf60c2ae22ced314c8062b125 Mon Sep 17 00:00:00 2001 From: SwiftyOS Date: Fri, 15 Sep 2023 20:21:18 +0200 Subject: [PATCH] fixed directory name --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index a4b00c8223..a8e6e68752 100644 --- a/cli.py +++ b/cli.py @@ -440,7 +440,7 @@ def enter(agent_name, branch): data["branch_to_benchmark"] = branch # Create agent directory if it does not exist - subprocess.check_call(['mkdir', '-p', 'agent']) + subprocess.check_call(['mkdir', '-p', 'arena']) # Create a JSON file with the data with open(f'arena/{agent_name}.json', 'w') as json_file: