Skip to content

Commit 78c456f

Browse files
committed
more logging
1 parent 4de0f1b commit 78c456f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/download-tools.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def download_adb_fastboot(platform: str):
3939

4040
# Writing the file to the local file system
4141
download_path = Path(__file__).parent.joinpath(Path("tools")).resolve()
42+
logger.info(download_path)
4243
file = zipfile.ZipFile(BytesIO(response.content))
4344
file.extractall(download_path.name)
4445
logger.info("DONE.")
@@ -53,6 +54,7 @@ def download_heimdall(platform: str):
5354

5455
# Writing the file to the local file system
5556
download_path = Path(__file__).parent.joinpath(Path("heimdall")).resolve()
57+
logger.info(download_path)
5658
file = zipfile.ZipFile(BytesIO(response.content))
5759
file.extractall(download_path.name)
5860
logger.info("DONE.")

0 commit comments

Comments
 (0)