scripts: west_commands: runners: Fix broken jlink runner
The cleanup pass (336c7da) to address long lines accidentally
removed a needed comma in the jlink runner.
Fixes #83605
Signed-off-by: David Leach <david.leach@nxp.com>
This commit is contained in:
parent
9cfc546eba
commit
90dfeaf61c
1 changed files with 1 additions and 1 deletions
|
|
@ -269,7 +269,7 @@ class JLinkBinaryRunner(ZephyrBinaryRunner):
|
|||
+ ['-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 [])
|
||||
|
|
|
|||
Loading…
Reference in a new issue