Skip to content

Commit b6306ee

Browse files
committed
Join exe string properly
1 parent 5f8ef84 commit b6306ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/download-tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def move_files_to_lib(platform: str):
124124
logger.info("Allow the executables to be executed.")
125125
for executable_name in ["fastboot", "adb", "mke2fs", "heimdall"]:
126126
if platform == "win32":
127-
(pt_target_path / executable_name + ".exe").chmod(0o755)
127+
(pt_target_path / (executable_name + ".exe")).chmod(0o755)
128128
else:
129129
(pt_target_path / executable_name).chmod(0o755)
130130
logger.info("DONE.")

0 commit comments

Comments
 (0)