mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
✨ Don't download if file already exist
This commit is contained in:
@@ -30,6 +30,9 @@ class Downloader(object):
|
|||||||
self.patcher = patcher
|
self.patcher = patcher
|
||||||
|
|
||||||
def _download(self, url: str, file_name: str) -> None:
|
def _download(self, url: str, file_name: str) -> None:
|
||||||
|
if os.path.exists(self.config.temp_folder.joinpath(file_name)):
|
||||||
|
logger.debug(f"Skipping download of {file_name}. File already exists.")
|
||||||
|
return
|
||||||
logger.debug(f"Trying to download {file_name} from {url}")
|
logger.debug(f"Trying to download {file_name} from {url}")
|
||||||
self._QUEUE_LENGTH += 1
|
self._QUEUE_LENGTH += 1
|
||||||
start = perf_counter()
|
start = perf_counter()
|
||||||
|
|||||||
Reference in New Issue
Block a user