From 4a146d3e80e2ca14bdbdb2e75957eb98f3803720 Mon Sep 17 00:00:00 2001 From: Alejandro Aristizabal Date: Fri, 25 Oct 2024 15:12:28 -0500 Subject: [PATCH] Fix stages being downloaded in the wrong location --- cli/medperf/comms/entity_resources/resources.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/medperf/comms/entity_resources/resources.py b/cli/medperf/comms/entity_resources/resources.py index ab51012a7..b59324e3a 100644 --- a/cli/medperf/comms/entity_resources/resources.py +++ b/cli/medperf/comms/entity_resources/resources.py @@ -97,7 +97,7 @@ def get_cube_params(url: str, cube_path: str, expected_hash: str = None): def get_cube_stages(url: str, cube_path: str, expected_hash: str = None): """Downloads and writes a cube stages.yaml file""" - output_path = os.path.join(cube_path, config.workspace_path, config.stages_filename) + output_path = os.path.join(cube_path, config.stages_filename) return _get_regular_file(url, output_path, expected_hash)