Skip to content

Commit

Permalink
revert everything to paths but env
Browse files Browse the repository at this point in the history
  • Loading branch information
saienduri committed Apr 16, 2024
1 parent 01a9331 commit f2dc94b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iree_tests/download_remote_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def download_azure_remote_file(test_dir: Path, remote_file: str):
local_dir_path = test_dir
local_file_path = test_dir / remote_file_name
else:
local_dir_path = str(cache_location) + "/iree_tests/" + str(relative_dir)
local_file_path = str(cache_location) + "/iree_tests/" + str(relative_dir) + "/" + remote_file_name
local_dir_path = Path(cache_location) / "iree_tests" / relative_dir
local_file_path = Path(cache_location) / "iree_tests" / relative_dir / remote_file_name
if check_azure_remote_file_matching_local(blob_properties, local_file_path):
print(f" Skipping '{remote_file_name}' download (local MD5 hash matches)")
return
Expand Down

0 comments on commit f2dc94b

Please sign in to comment.