mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-06-11 01:34:46 -04:00
fix: do not re-download sources by default
This commit is contained in:
@@ -12,7 +12,7 @@ from tqdm import tqdm
|
||||
def download(url, filepath: Path):
|
||||
if filepath.exists():
|
||||
print(f"{filepath} already exists.")
|
||||
if query_yes_no("Do want to re-download?", default="yes"):
|
||||
if query_yes_no("Do want to re-download?", default="no"):
|
||||
print(f"Removing {filepath}...")
|
||||
os.remove(filepath)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user