Skip to content

Commit f2ff279

Browse files
committed
Typo fix in dfu-util path
1 parent a21fc29 commit f2ff279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def _jlink_cmd_script(env, source):
210210

211211
# default tool for all boards with embedded DFU bootloader over USB
212212
_upload_tool = '"%s"' % join(platform.get_package_dir(
213-
"tool-dfuutil") or "", "bin", "dfu-util"),
213+
"tool-dfuutil") or "", "bin", "dfu-util")
214214
_upload_flags = [
215215
"-d", ",".join(["%s:%s" % (hwid[0], hwid[1]) for hwid in hwids]),
216216
"-a", "0", "-s",
@@ -225,7 +225,7 @@ def _jlink_cmd_script(env, source):
225225
0,
226226
env.VerboseAction(
227227
env.AutodetectUploadPort, "Looking for upload port..."
228-
),
228+
)
229229
)
230230
elif board.get("build.mcu").startswith("stm32f103"):
231231
# F103 series doesn't have embedded DFU over USB

0 commit comments

Comments
 (0)