Skip to content

Commit

Permalink
tests: Avoid checking for restic archive presence
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed Dec 10, 2024
1 parent d5c32bd commit 9737d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RESTIC_SOURCE_FILES/update_restic.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def download_restic_binaries(arch: str = "amd64") -> bool:
if not dest_dir.joinpath("ARCHIVES").is_dir():
os.makedirs(dest_dir.joinpath("ARCHIVES"))

dest_file = dest_dir.joinpath("restic_" + current_version + fname + arch_suffix)
dest_file = dest_dir.joinpath("restic_" + current_version + fname + suffix)

if dest_file.is_file():
print(f"RESTIC SOURCE ALREADY PRESENT. NOT DOWNLOADING {dest_file}")
Expand Down

0 comments on commit 9737d5f

Please sign in to comment.