Fix bug in download_tool()
Skip check to ensure the correct architecture path is returned.
This commit is contained in:
parent
6a00444bd4
commit
4928989913
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ def download_file(out_path, source_url, as_new=False, overwrite=False):
|
|||
def download_tool(folder, name):
|
||||
"""Download tool."""
|
||||
name_arch = f'{name}{ARCH}'
|
||||
out_path = find_kit_dir('.bin').joinpath(f'{folder}/{name}.exe')
|
||||
out_path = get_tool_path(folder, name, check=False)
|
||||
up_to_date = False
|
||||
|
||||
# Check if tool is up to date
|
||||
|
|
|
|||
Loading…
Reference in a new issue