Skip to content

Commit

Permalink
allow for spaces in custom bootloader filename
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed Sep 8, 2024
1 parent 75476bc commit fdbb90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esc_unlocker.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def run_openocd():

openocd = get_openocd()
process = subprocess.Popen([openocd,
'-c', "set BOOTLOADER %s" % bootloader,
'-c', 'set BOOTLOADER "%s"' % bootloader,
'--file', probe_file,
'--file', config_file],
stdout=subprocess.PIPE,
Expand Down

0 comments on commit fdbb90e

Please sign in to comment.