Update Configure.py

This commit is contained in:
Marcel Pi 2023-10-28 18:00:54 +02:00
parent 7400b1524b
commit 8574389b8f
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ def UpdateDependency(dep : dict):
UpdateGitDependency(name, download_path, url)
elif str(url).endswith('.tar.gz') or str(url).endswith('.zip'):
if download_path.exists():
print(f'Dependency "{name}" already downloaded. Delete "{download_path}" if you wish for it to be re-downloaded.')
print(f'Dependency "{name}" already present. Delete "{download_path}" if you wish for it to be downloaded again.')
else:
UpdateArchiveDependency(name, download_path, url)
return