We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba3652f commit 0c4f412Copy full SHA for 0c4f412
scripts/download-tools.py
@@ -84,6 +84,12 @@ def move_files_to_lib(platform: str):
84
adb_target_path = adb_target_path.parents[0] / "adb.exe"
85
logger.info(adb_target_path)
86
adb_path.rename(adb_target_path)
87
+ # if windows, also move dll
88
+ if platform == "win32":
89
+ adb_path = adb_path.parents[0] / "AdbWinApi.dll"
90
+ adb_target_path = adb_target_path.parents[0] / "AdbWinApi.dll"
91
+ logger.info(adb_target_path)
92
+ adb_path.rename(adb_target_path)
93
# move fastboot
94
fb_path = (
95
Path(__file__)
0 commit comments