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:
David Leach 2025-01-06 12:54:33 -06:00 committed by Benjamin Cabé
parent 9cfc546eba
commit 90dfeaf61c

View file

@ -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 [])