Skip to content

Commit 90dfeaf

Browse files
dleach02kartben
authored andcommitted
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 <[email protected]>
1 parent 9cfc546 commit 90dfeaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/west_commands/runners/jlink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def do_run(self, command, **kwargs):
269269
+ ['-speed', self.speed]
270270
+ ['-device', self.device]
271271
+ ['-silent']
272-
+ ['-endian' 'big' if big_endian else 'little']
272+
+ ['-endian', 'big' if big_endian else 'little']
273273
+ ['-singlerun']
274274
+ (['-nogui'] if self.supports_nogui else [])
275275
+ (['-rtos', plugin_dir] if rtos else [])

0 commit comments

Comments
 (0)