We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de0f1b commit 78c456fCopy full SHA for 78c456f
1 file changed
scripts/download-tools.py
@@ -39,6 +39,7 @@ def download_adb_fastboot(platform: str):
39
40
# Writing the file to the local file system
41
download_path = Path(__file__).parent.joinpath(Path("tools")).resolve()
42
+ logger.info(download_path)
43
file = zipfile.ZipFile(BytesIO(response.content))
44
file.extractall(download_path.name)
45
logger.info("DONE.")
@@ -53,6 +54,7 @@ def download_heimdall(platform: str):
53
54
55
56
download_path = Path(__file__).parent.joinpath(Path("heimdall")).resolve()
57
58
59
60
0 commit comments