Skip to content

Commit

Permalink
scripts: west_commands: runners: Fix broken jlink runner
Browse files Browse the repository at this point in the history
The cleanup pass (336c7da) to address long lines accidentally
removed a needed comma in the jlink runner.

Fixes zephyrproject-rtos#83605

Signed-off-by: David Leach <[email protected]>
  • Loading branch information
dleach02 authored and kartben committed Jan 6, 2025
1 parent 9cfc546 commit 90dfeaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/west_commands/runners/jlink.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def do_run(self, command, **kwargs):
+ ['-speed', self.speed]
+ ['-device', self.device]
+ ['-silent']
+ ['-endian' 'big' if big_endian else 'little']
+ ['-endian', 'big' if big_endian else 'little']
+ ['-singlerun']
+ (['-nogui'] if self.supports_nogui else [])
+ (['-rtos', plugin_dir] if rtos else [])
Expand Down

0 comments on commit 90dfeaf

Please sign in to comment.