Skip to content

Commit

Permalink
Fix stages being downloaded in the wrong location
Browse files Browse the repository at this point in the history
  • Loading branch information
aristizabal95 committed Oct 25, 2024
1 parent bf94b55 commit 4a146d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/medperf/comms/entity_resources/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down

0 comments on commit 4a146d3

Please sign in to comment.