Skip to content

Commit 7d532b4

Browse files
Change download directory to use cache directory
1 parent 6ffd7ac commit 7d532b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/nwb_benchmarks/setup/_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def get_persistent_download_directory() -> pathlib.Path:
135135
pathlib.Path
136136
The persistent download directory path.
137137
"""
138-
benchmarks_home_directory = get_benchmarks_home_directory()
139-
download_directory = benchmarks_home_directory / "downloads"
138+
cache_directory = get_cache_directory()
139+
download_directory = cache_directory / "downloads"
140140
download_directory.mkdir(exist_ok=True)
141141
return download_directory

0 commit comments

Comments
 (0)