Skip to content

Commit 216c78d

Browse files
committed
Add missing space
1 parent 0e304e2 commit 216c78d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/zephyr-cp/cptools/cpbuild.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ async def run_command(
150150
# When on windows, use a responsefile if the command string is >= 8192
151151
if os.name == "nt" and len(command_string) >= 8192:
152152
responsefile.write_text("\n".join(command[1:]))
153-
command_string = f"{command[0]}@{responsefile.name}"
153+
command_string = f"{command[0]} @{responsefile.name}"
154154
else:
155155
command_string = command
156156

0 commit comments

Comments
 (0)