Skip to content

Commit

Permalink
Fix for #200, fix in get_container_path
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh committed Feb 9, 2025
1 parent b04b084 commit c928aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion automation/script/docker_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def get_container_path_script(i):
def get_container_path(value, username="mlcuser"):
path_split = value.split(os.sep)
if len(path_split) == 1:
return value
return value, value

new_value = ''
if "cache" in path_split and "local" in path_split:
Expand Down

0 comments on commit c928aa8

Please sign in to comment.